贝宝智能按钮actions.order.capture()

时间:2020-03-17 13:30:11

标签: javascript paypal

如何从对象详细信息中获取数据?我在贝宝(Paypal)文档中找不到它! 只是不确定。

     // 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 + '!');
                });
            }

1 个答案:

答案 0 :(得分:1)

您可以在响应部分参阅此link中的文档。例如,要获取付款人姓名,您可以编写:

details.payer.name.given_name

或类似的订单ID:

details.id