防止重复相同电商订单的页面设计
菜鸟问题:我正在为一个在线商务网站构建一个结账系统。 我遇到这样的错误:多次点击“下订单”按钮会多次下订单。 我有一个想法,在按钮单击页面和下订单页面之间加载一个页面,该页面在使用 javascript 启动下订单页面之前等待几秒钟。
我的问题是:网上有哪些应对这种特殊情况的政策?
noob question: I'm building a checkout system for an online commerce site. I'm getting the bug where clicking on the "place order" button multiple times will place the order multiple times. I have an idea to load between the button-click page and place-order page with a page that waits several seconds before launching using javascript the place-order page.
My question is: what are some of the policies online for dealing with this particular scenario?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
建议的做法是:
有很多具体细节需要考虑,但是这些在很大程度上取决于您选择的平台/框架。
The recommended practice is to:
There are lots of specific details to consider, but these heavily depend on your platform/framework of choice.