gpt4 book ai didi

stripe-payments - 使用 Stripe Payment Request Button 时,如何在提交 token 请求之前更改标签和总计?

转载 作者:行者123 更新时间:2023-12-04 07:21:02 30 4
gpt4 key购买 nike

我让按钮使用测试数据工作,但有一个表单可以收集金额并使用下拉列表设置标签。我需要在提交之前使用表单数据更新付款请求按钮。

我已初始化按钮,它出现在我的 Android 设备上。当文档准备好时,我调用 initPaymentRequest。

function initPaymentRequest(){
paymentRequest = stripe.paymentRequest({
country: 'US',
currency: 'usd',
total: {
label: 'Demo total',
amount: 1000,
},
});
prButton = elements.create('paymentRequestButton', {
paymentRequest: paymentRequest,
});

// Check the availability of the Payment Request API first.
paymentRequest.canMakePayment().then(function(result) {
if (result) {
log("Payment Request Available");
$(".ux-submit, #payment-request-button").addClass("col-xs-6");
prButton.mount('#payment-request-button');
} else {
log("Payment Request NOT Available");
$(".ux-submit, #payment-request-button").addClass("col-xs-6");
}
});

paymentRequest.on('click', updatePaymentRequest);
paymentRequest.on('token', function(ev) {
// Send the token to your server to charge it!
fetch('/charges', {
method: 'POST',
body: JSON.stringify({token: ev.token.id}),
})
.then(function(response) {
if (response.ok) {
// Report to the browser that the payment was successful, prompting
// it to close the browser payment interface.
ev.complete('success');
process_form(ev);
} else {
// Report to the browser that the payment failed, prompting it to
// re-show the payment interface, or show an error message and close
// the payment interface.
ev.complete('fail');
}
});
});
}

function updatePaymentRequest(){;

paymentRequest = stripe.paymentRequest({
country: 'US',
currency: 'usd',
total: {
label: $("select[name='charge_label'] option:selected").text(),
amount: $("#charge-amount").val()*100,
},
});

prButton = elements.create('paymentRequestButton', {
paymentRequest: paymentRequest,
});

$("#payment-request-button").append("<br>update");
}

最佳答案

试试这个,而不是函数 updatePaymentRequest():

paymentRequestElement.on('click', function(ev) {
paymentRequest.update({
total: {
label: $("select[name='charge_label'] option:selected").text(),
amount: $("#charge-amount").val()*100,
},
})
})

条纹文档:
  • paymentRequest.update(options) - Stripe.js Reference | Stripe
  • 关于stripe-payments - 使用 Stripe Payment Request Button 时,如何在提交 token 请求之前更改标签和总计?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47577686/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com