您好我一直在寻找如何为checkoutJS更自定义paypal变量更具体地使用此函数
payment: function (data, actions) {
// Make a call to the REST api to create the payment
return actions.payment.create({
payment: {
transactions: [
{
amount: { total: 'cost', currency: 'PHP' }
}
]
}
});
},
我需要能够编辑成本'根据我的div文本。 我试过这样做(原谅我,如果这是愚蠢的):
var cost = document.getElementById('cost').InnerText;
payment: function (data, actions) {
// Make a call to the REST api to create the payment
return actions.payment.create({
payment: {
transactions: [
{
amount: { total: cost, currency: 'PHP' }
}
]
}
});
},
现在,当我点击"立即购买"按钮弹出窗口出现一个旋转器然后关闭。 我想在ASP MVC中尝试这个,如果它有任何相关性。
非常感谢帮助!