결제 성공 페이지에 정보 담아 던지기

button.addEventListener("click", async function () {
await widgets.requestPayment({
orderId: orderId,
orderName: orderWrt,
successUrl: window.location.origin + "success.asp",
failUrl: window.location.origin + "fail.asp",
customerName: orderName,
customerMobilePhone: "0" + removeNonNumeric(orderTel) + "",
});
});

여 success.asp ?
Was this page helpful?