2 Symfony 2 页面验证错误处理

发布于 2024-12-01 05:20:49 字数 239 浏览 1 评论 0原文

我的页面上有一个评论表单(评论列表)并希望验证它。该表单提交到另一个网址: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 技术交流群。

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

发布评论

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

评论(1

沐歌 2024-12-08 05:20:49

您可以使用即时消息。您可以将消息设置到操作中:

$this->get('session')->setFlash('my_flash_key',"Flash label!");

并且可以将其显示到模板中:

 {% for key, flash in app.session.getFlashes() %}
    <div class="errors">
        {{ flash }}
    </div>
{% endfor %}

You can use the flash messages. You can set the message into the action:

$this->get('session')->setFlash('my_flash_key',"Flash label!");

and you can show it into the template:

 {% for key, flash in app.session.getFlashes() %}
    <div class="errors">
        {{ flash }}
    </div>
{% endfor %}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文