Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图猜测为什么我提交的表单无效,因为我的实体没有限制。
我传递给树枝模板'error' => $form->getErrors(),但后来我不知道如何在树枝中显示错误消息
'error' => $form->getErrors()
谢谢大家
从文档:
{{ form_errors(form.fooProperrty) }}
和
{{ form_errors(form) }}
如果我猜到了,您的表单没有验证,因为您忘记渲染 csrf 令牌,您可以通过执行
{{ form_rest(form) }}