电梯发布后重定向
经过搜索后,没有找到任何有用的东西,我决定发布这个问题。
是否可以在 Lift 中执行“Redirect after Post”习惯用法 - 如果可以,如何执行?
After searching through SO, and not finding anything useful, I decided to post this question.
Is it possible to execute the "Redirect after Post" idiom in Lift - and if so how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。
需要注意的一件事是,为了避免“表单重新提交”警告,当我们想要显示错误或通知等内容时,我们需要重定向到我们自己,按照 邮件存档讨论,作者:Naftoli Gugenheim:
因此,例如,在处理表单时我们可以做一些事情喜欢 这:
Yes it is possible.
One thing to notice, is that in order to avoid "form resubmission" warning, we need to redirect to ourselves when we want to show things like errors or notices, as per the mail archive discussion by Naftoli Gugenheim:
So, for example when processing a form we can do something like this:
您只需在处理 post 请求后使用
S.redirectTo("\pagename")
即可。为此,您需要在菜单中定义“页面名称”。You can simply use
S.redirectTo("\pagename")
after proceesing post request. For that to work you need to define "pagename" in menu.