iOS WKWebView 에서 해외 카드 결제창 오픈 시 상단 창 닫기 영역 잘림 이슈

트 viewport-fit=cover
.
?
.

const tossPayments = TossPayments(tpForeignClientKey);
const tsPayments = tossPayments.payment({customerKey});
const pSeq = (paymentData == null ? 0 : paymentData.seq);
tsPayments.requestPayment({
method: 'CARD',
amount: {
currency: 'KRW',
value: tossData.totalPrice,
},
orderId: tossData.impUid,
orderName: tossData.name,
successUrl: ${window.location.origin}/donation/tosspay/success?pseq=${pSeq}&totalPrice=${totalPrice}&payDate=1&pointByPms=${tossData.pointByPms}&isForeignCard=1,
failUrl:
${window.location.origin}/donation/tosspay/fail
,
customerEmail: tossData.customerEmail,
customerName: tossData.customerName,
customerMobilePhone: tossData.customerMobilePhone,
taxFreeAmount: tossData.totalPrice,
card: {
useEscrow: false,
useInternationalCardOnly: true
}
});
2025-07-03_3.23.45.png
2025-07-03_3.24.31.png
Was this page helpful?