2

当我尝试在控制台中设置管理员时:

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'

问题是什么?谢谢

4

1 回答 1

0

在 config.yml 中定义东西并没有定义参数。

为了定义参数,您需要将它们放在parameters.ini(symfony 2.0)或parameters.yml(2.1)中,或者将它们设置在依赖注入扩展中。

于 2012-06-19T11:30:46.277 回答