결제 성공 페이지에 정보 담아 던지기
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 로 넘어 갈때 현재 페이지에 있던 정보들을 담아서 같이 던지고 싶은데 어떤방법이있을까요?
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 로 넘어 갈때 현재 페이지에 있던 정보들을 담아서 같이 던지고 싶은데 어떤방법이있을까요?
