【发布时间】:2015-07-01 04:39:55
【问题描述】:
我目前正在 appery.io 中创建一个应用程序,并且我已经将 PayPal RESTApi 实现到其中。一切都正常运行,但我无法让我的描述/订单摘要看起来正确....目前我有这个
var sReturn ='';
sReturn +="Recipient: "+ localStorage.getItem('giftcard_recipient');
sReturn +="Recipient Email: "+ localStorage.getItem('giftcard_email');
sReturn +="Card Type: "+ localStorage.getItem('giftcard_type');
sReturn +="Card Amount: "+ localStorage.getItem('nPrice');
sReturn +="Note: "+ localStorage.getItem('giftcard_note');
return sReturn;
这反过来会导致这个......
我不知道如何让贝宝订单摘要看起来像我看到的很多,例如...
【问题讨论】:
标签: javascript paypal paypal-sandbox paypal-rest-sdk