0
我使用Paypal Express結帳與checkout.js
與standard javascript code由貝寶提供。Paypal快速結帳 - 客戶的更多詳細信息
一切工作正常,並支付彈出如下:
現在我的問題:是否有可能添加有關產品這個彈出更多的細節?
像例如,產品的名稱和描述? (此代碼不起作用)。
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文檔相當混亂。