我正在使用该django-paypal
库在我的网站上使用 PayPal 付款。
按照示例,我设置paypal_dict
并添加了表单。
paypal_dict = {
"business": settings.PAYPAL_RECEIVER_EMAIL,
"amount": "10000000.00",
"item_name": "name of the item",
"invoice": "unique-invoice-id",
"notify_url": "https://www.example.com" + reverse('paypal-ipn'),
"return_url": "https://www.example.com/your-return-location/",
"cancel_return": "https://www.example.com/your-cancel-location/",
}
但是,我收到了global name 'reverse' is not defined
我使用 Python 2.7.9 的错误,这是怎么回事?