user_cancel

function pay(method, requestJson) {
tossPayments.requestPayment(method, requestJson).catch(function (error) {
if (error.code === "USER_CANCEL") {
alert(".");
} else {
alert(error.message);
}
});
}

서 PC은 USER_CANCEL서 alert면 failurl.
PC?
Was this page helpful?