我知道在 SO 上已经有很多这样的问题,但他们的答案都不适合我。
我正在使用简单的按钮形式:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input type="hidden" name="amount" value="500.00">
<input type="hidden" name="currency_code" value="AUD">
<input name="hosted_button_id" type="hidden" value="XXXXX" />
<input alt="PayPal — The safer, easier way to pay online." name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_paynowCC_LG.gif" type="image" />
<img src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" border="0" alt="" width="1" height="1" />
</form>
但得到错误:
The link you have used to enter the PayPal system contains an incorrectly formatted item amount.
根据我的研究,这是因为该值需要 2 位小数且没有货币符号。但正如你所看到的,我已经尝试过了。我尝试过的其他版本是:
value=500.00>
value="$500.00">
value="500">
value="500.00">
value='500.00'>
有人会知道发生了什么吗?谢谢!