PayPal描述Javascript

时间:2015-04-23 06:57:45

标签: javascript paypal paypal-sandbox paypal-rest-sdk

我目前正在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;

反过来导致这个...... current summary

我不知道如何让paypal订单摘要看起来像我看到的很多,例如... paypal

1 个答案:

答案 0 :(得分:0)

我真的不知道如何使用应用程序,但在带有购物车的普通网站上,您需要向paypal发送几个隐藏字段以获得您想要的结果。其中一些是必需的,一些是可选的。最重要的可能是:

<input type="hidden" name="cmd" value="_cart" />

查看此网站以获取更多选项: Paypal Developer Site

有一个很好的教程,介绍如何构建购物车并通过jQuery将其发送到Paypal: Creating a client-side shopping cart