我有问题,symfony说,他无法找到变量" form":
我的控制器是:
q = session.query(Parent).options(joinedload(Parent.child))
以获得更多说明和答案: 改变了:
(...)
$login = array();
$form = $this->createForm(new LoginType(), $login, array('action' => $this->generateUrl('login_check')));
return $this->render('AppBundle:Authentication:login.html.twig',
array(
'error'=> $error,
'form' => $form->createView())
);
}
进入
render('AppBundle:Authentication:login.html.twig',
and the template:
我的模板: 文件夹:Security / login.html.twig
render('AppBundle:Security:login.html.twig',
我错了什么,symfony无法找到"形式"?
我的错误信息是:
{% extends 'AppBundle:Security:layout.html.twig' %}
{% block main_content %}
{{ form_start(form) }}
{{ form_widget(form) }}
{{ form_end(form) }}
{% endblock %}