您好我在Heroku上有一个django应用程序。
我有一个使用paypal按钮的视图,它正在工作并将我发回给我的成功网址。但是在成功网址上我想显示/使用我的自定义变量。
我已经从StackOverflow尝试了一些解决方案,但我不能自己修复它。
URLS
path('match/<int:pk>', MatchDetail, name='match-detail'),
path('match_paid/', MatchPaid, name='match-paid'),
MatchDetail - PayPalButton
表格如下:
<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="...">
<input type="hidden" name="custom" id="custom" value="{{match.id}}">
<input type="image" src="https://www.sandbox.paypal.com/de_DE/DE/i/btn/btn_paynow_LG.gif" border="0" name="submit" alt="Jetzt einfach, schnell und sicher online bezahlen – mit PayPal.">
<img alt="" border="0" src="https://www.sandbox.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
</form>
在PayPal中,我已将我的按钮的自定义变量设置为:
custom=custom # What is most likely wrong.
现在我希望在返回网址'match_paid/'
中打印自定义变量。
试过{{custom}}, {{request.custom}}
等等。