在 django 中,有没有办法让用户保持在向导的阶段,直到他们准备好继续前进?
在 django 中,有没有办法让用户保持在表单向导的阶段,直到他们准备好为止?
如果用户单击“是”,则会保存该阶段的当前内容,清除该阶段等在。
In django, is there a way to keep users on a stage of a forms wizard until they're ready?
Where if a user clicks on yes, the current contents of that stage are saved, the stage cleared and so on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 javascript 来控制表单验证、提交、工作流程等。我不完全确定您想要什么,但如果您需要更精确地控制客户端交互,您几乎肯定需要使用 javascript。
You can use javascript to control form validation, submission, workflow, etc. I'm not entirely sure what you want, but if you need more precise control over the client-side interaction you'll almost certainly need to use javascript.