Django:在发布到外部网站之前创建模型

发布于 2024-11-19 00:27:20 字数 278 浏览 2 评论 0原文

我想知道是否可以在发布到外部网站之前创建一个模型?

我正在尝试执行以下操作:

  • 用户单击购买按钮。
  • 将详细信息发布到 Django 视图。订单模型已创建。
  • Paypal IPN 表格已发布。
  • 用户获得 Paypal 登录屏幕,登录,付款,...

我可以使用 Javascript 来完成此操作,我想首先发布到 Django,当成功后发布 IPN 表单,但我想知道是否有一个解决方案不这样做涉及Javascript?

I wonder if it's possible to create a model before posting to an external website?

I am trying to do the following:

  • User clicks on a buy button.
  • Post details to Django view. Order model is created.
  • Paypal IPN form is posted.
  • User get the Paypal login screen, logs in, pays, ...

I could do this with Javascript I guess by first posting to Django and when that is successful post the IPN form but I was wondering if there is a solution that doesn't involve Javascript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2024-11-26 00:27:20

我见过的最好的方法是 Satchmo 的做法:

http:// /www.satchmoproject.com/docs/dev/ payment.html#paypal

我们已将其从 Satchmo 核心移至其自己的项目中:

https://bitbucket.org/bkroeze/django-bursar

使用 Satchmo Paypal 支付模块,您可以测试一切,包括 IPN 都是通过使用他们提供的“假”支付网关来工作的。使用这种类型的模块,您可以在将其发布到外部网站之前进行测试。

The best way I've seen to do this is how Satchmo does it:

http://www.satchmoproject.com/docs/dev/payment.html#paypal

There has been work to move this out of the core of Satchmo and into its own project here:

https://bitbucket.org/bkroeze/django-bursar

Using the Satchmo Paypal payment module you can test that everything, including IPN is working by using the "fake" payment gateway they provide. Using this type of module you can test before posting it to an external Web site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文