具有自定义金额的PayPal按钮

时间:2015-10-14 13:05:22

标签: paypal paypal-sandbox

我试图添加PayPal'立即购买'按钮到我的网站。由于我的产品价格是每个订单的客户,我需要传递自定义金额,该金额由变量{{ order.invoiceValue }}提取。我的代码片段如下,但PayPal似乎无法识别它(见下面的截图)。任何帮助将不胜感激!

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
  <input type="hidden" name="cmd" value="_s-xclick">
  <input type="hidden" name="hosted_button_id" value="XXXYYYZZZ">
  <input type="hidden" name="business" value="service@mycompany.com">
  <input type="hidden" name="amount" value="{{ order.invoiceValue }}">
  <input type="hidden" name="quantity" value="1">


  <input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
  <img alt="" border="0"`enter code here` src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

enter image description here

1 个答案:

答案 0 :(得分:0)

您无需添加代码{{order.invoiceValue}}。相反,只需将值保留为空白即可。当您的客户提出金额时,它将传递给PP的价格。