如何从braintree结果中获取orderId

时间:2018-09-11 18:31:43

标签: node.js braintree

这是Braintree结帐的结果。

{ transaction: 
   Transaction {
     id: '7h534h3r',
     status: 'settling',
     type: 'sale',
     currencyIsoCode: 'USD',
     amount: '15.00',
     merchantAccountId: 'xxxxxxxxxxxxxx',
     subMerchantAccountId: null,
     masterMerchantAccountId: null,
     orderId: '5b98025f09dd1231e4596c95',
     createdAt: '2018-09-04T04:40:04Z',
     updatedAt: '2018-09-04T04:40:08Z'
......

我想获取订单ID。我使用了result.transaction.Transaction.orderID,但失败了。我终于意识到在“事务”之后缺少一个冒号(:)。如何从中获取orderId?预先感谢。

Richard Xu

1 个答案:

答案 0 :(得分:0)

看起来“交易”只是类型而不是属性。尝试result.transaction.orderId