您需要_token在表单中添加,即
{{ form_row(form._token) }}
截至目前,您的表单缺少CSRF令牌字段。如果您使用树枝形状表单函数来呈现表单,form(form)则将自动为您呈现CSRF令牌字段,但是您的代码显示您正在使用原始HTML来呈现表单,例如<form></form>,因此您必须手动呈现该字段。
或者,只需{{ form_rest(form) }}在表单的结束标记之前添加。
根据文档
这将呈现给定表单尚未呈现的所有字段。始终将其保留在表单内是一个好主意,因为它将为您呈现隐藏的字段,并使您忘记呈现的所有字段变得更加明显(因为它将为您呈现该字段)。
解决方法每次尝试提交表单时,我都会收到此错误消息:
CSRF令牌无效。请尝试重新提交表格
我的表单代码是这样的:
<form novalidate action='{{path(’signup_index’)}}' method='post' {{form_enctype(form)}} role='form' class='form-horizontal'> <div class='form-group'>{{ form_label(form.email,’Email’,{’label_attr’: {’class’: ’col-md-1 control-label’}}) }}{{ form_widget(form.email,{’attr’: {’class’: ’col-md-2’}}) }}{{ form_errors(form.email) }} </div> <div class='form-group'>{{ form_label(form.nickname,’Nickname’,{’label_attr’: {’class’: ’col-md-1 control-label’}}) }}{{ form_widget(form.nickname,{’attr’:{’class’: ’col-md-2’}}) }}{{ form_errors(form.nickname,{’attr’: {’class’: ’col-md-3’}}) }} </div> <div class='form-group'>{{ form_label(form.password,’password’,{’label_attr’: {’class’: ’col-md-1 control-label’}}) }}{{ form_widget(form.password,{’attr’: {’class’: ’col-md-2’}}) }}{{ form_errors(form.password,{’attr’: {’class’: ’col-md-3’}}) }} </div> <div class='form-group'>{{ form_label(form.password_repeat,’Repeat password’,{’label_attr’: {’class’: ’col-md-1 control-label’}}) }}{{ form_widget(form.password_repeat,{’attr’:{’class’: ’col-md-2’}}) }}{{ form_errors(form.password_repeat,{’attr’: {’class’: ’col-md-3’}}) }} </div> <div class='form-group'><div class='col-md-1 control-label'><input type='submit' value='submit'> </div> </div></form>
有任何想法吗?