2017-04-16 104 views
0

我使用Paypal Express結帳與checkout.jsstandard javascript code由貝寶提供。Paypal快速結帳 - 客戶的更多詳細信息

一切工作正常,並支付彈出如下:

enter image description here

現在我的問題:是否有可能添加有關產品這個彈出更多的細節?

像例如,產品的名稱和描述? (此代碼不起作用)。

return paypal.rest.payment.create(this.props.env, this.props.client, { 
    transactions: [ 
    { 
     amount: { total: '{{ entry.itemPreis }}', currency: 'CHF' }, 
     description: 'this is some description', 
     // description: works and shows up in the paypal backend 
     // but is not visible to the customer 

     title: 'this would be the title' // doesn't work 
    } 
    ], 
}); 

我發現paypal文檔相當混亂。

回答

1

這對我的作品

transactions: [ 
    { 
     amount: { total: '100', currency: 'CHF' }, 
      item_list: { 
      items: [ 
       { 
       name: 'Whateveryoufancy', 
       description: 'Lorem ipsum', 
       quantity: '1', 
       price: '100', 
       currency: 'CHF' 
       } 
      ] 
     } 
    } 
]