当我尝试在控制台中设置管理员时:
php app/console admin:setup
我收到了一个错误:
ParameterNotFoundException: You have requested a non-existent parameter "twig.form.resources".
我尝试在config.yml中添加twig.form.resources参数,但它没有帮助=(
twig:
form:
resources:
- 'GeneratorBundle::fields.html.twig'
有什么问题?感谢
答案 0 :(得分:0)
在config.yml中定义东西不会定义参数。
在oder中定义参数,需要将它们放在parameters.ini(symfony 2.0)或parameters.yml(2.1)中,或者在依赖注入扩展中设置它们。