我正在用 HTML 和 PHP 创建一个购物网站。这是我第一次做 Web 开发。
我正在尝试将 PayPal Checkout 添加到我的网站。我从贝宝开发人员那里得到了代码,付款成功了。如果付款成功,我需要使用 php 将订单数据插入到我的数据库中。
如何将我定义的表示付款批准的 javascript 变量传递给 PHP?
我已经看到它用 ajax 完成,但我不知道如何实现它。
这是我的代码。我添加了 jquery CDN,因为它似乎是必要的,但我不知道是否还需要其他任何东西。
<!DOCTYPE html>
<head>
<!-- Add meta tags for mobile and IE -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<!-- Set up a container element for the button -->
<div id="paypal-button-container"></div>
<!-- Include the PayPal JavaScript SDK -->
<script src="https://www.paypal.com/sdk/js?client-id=sb¤cy=USD"></script>
<script>
// Render the PayPal button into #paypal-button-container
paypal.Buttons({
style: {
layout: 'horizontal',
color: 'blue',
shape: 'rect'
},
// Set up the transaction
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
value: '17'
}
}]
});
},
// Finalize the transaction
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
// Show a success message to the buyer
alert('Transaction completed by ' + details.payer.name.given_name + '!');
//Variable to confirm successful payment on php
//?
//?
});
}
}).render('#paypal-button-container');
</script>
</body>
幕布斯6054654