0

我的 HTML 页面上有一个表单,其中包含 paypal 按钮和 paypal 信用卡按钮。这是一个简单的 HTML、JS 网站,而不是网上商店。成功付款后如何以编程方式发布表格?我的onApprove部分在下面不起作用。*目前只设置了paypal沙盒账户。

paypal.Buttons({
            style: {
                layout: 'vertical',
                color: 'black',
                shape: 'rect',
                label: 'paypal',
                height: 45
            },
            createOrder: function (data, actions) {
                // This function sets up the details of the transaction, including the amount and line item details.
                return actions.order.create({
                    purchase_units: [{
                        amount: {
                            value: total
                        }
                    }]
                });
            },
            onApprove: function (data, actions) {
                // This function captures the funds from the transaction.
                return actions.order.capture().then(function (details) {
                    // This function shows a transaction success message to your buyer.
                    $('#orderForm').submit();
                });
            }
            //fundingSource: paypal.FUNDING.PAYPAL
        }).render('#paypal-button-container');
4

1 回答 1

0

在客户端之后actions.order.capture(),您不应发布表单或写入数据库或任何此类性质的东西。客户端集成不适用于该用例。如果您需要在服务器上发送或存储数据作为 PayPal 交易的一部分,您应该使用服务器端集成:


在您的服务器上创建两条路由,一条用于“创建订单”,一条用于“捕获订单”,记录在此处。这些路由应该只返回 JSON 数据(没有 HTML 或文本)。后者应该(成功时)在返回之前将付款详细信息存储在您的数据库中(特别purchase_units[0].payments.captures[0].id是 PayPal 交易 ID)

将这两条路线与以下批准流程配对:https ://developer.paypal.com/demo/checkout/#/pattern/server

如果需要向服务器传输数据,请在fetch;中添加请求正文 不要使用表格帖子。

于 2021-06-26T10:49:01.413 回答