我在这里遵循了Paypal的“基本集成”:PayPal Checkout
我已经用沙箱“买方”和“服务商”交易对其进行了很好的测试,并且也可以通过按钮进行测试。
例如,如果成功,如何使下面的Paypal javascript将页面上已有的POST值发送到另一个页面PHP?
这是Paypal按钮代码:
<div id="paypal-button-container" align="center"></div>
<script>
paypal.Buttons({
style: {
layout: 'vertical',
color: 'blue',
shape: 'rect',
label: 'paypal',
},
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
value: '<?php echo $total_total_euro_photo ?>'
}
}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
alert('Transaction completed by ' + details.payer.name.given_name);
// Call your server to save the transaction
return fetch('/paypal-transaction-complete', {
method: 'post',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify({
orderID: data.orderID
})
});
});
}
}).render('#paypal-button-container');
</script>
在批准功能中,其写为// Call your server to save the transaction
我可以放一些在后台示例savecommande.php中执行的代码吗?somevalue:anothervalue:etc
?
如果它可以在当前页面上提交表单,则交易成功后也可以使用。
一些帮助非常有用。