2 Symfony 2 页面验证错误处理
我的页面上有一个评论表单(评论列表)并希望验证它。该表单提交到另一个网址:comment/add。验证本身工作正常,但我无法将带有 form_errors(form) 的消息显示到表单字段中。
我知道这是因为验证存在于 2 页之外。因此它正在被验证,然后再次重定向到该页面,以便看起来没有错误。
我的问题: 将消息传输到我的表单页面以便我可以将它们显示给用户的最佳方法是什么?最好保留提交的消息。
I've got a comment form on my page (commentlist) and want validate this. The form submits to another url: comment/add. The validation itself works perfectly but I can't display the messages with form_errors(form) into the form field.
I know this is because the validation exists out of 2 pages. So it's being validated but then redirected again to the page so that it looks like there are no mistakes.
my question:
What's the best way to transfer the messages to my formpage so that I can show them to the user? Preferabbly to keep the submitted message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用即时消息。您可以将消息设置到操作中:
并且可以将其显示到模板中:
You can use the flash messages. You can set the message into the action:
and you can show it into the template: