An exception has been thrown during the compilation of a template ("You must add ScourgenWebBundle to the assetic.bundle config to use the {% javascripts %} tag in ScourgenWebBundle:Default:index.html.twig.") in "D:\htdocs\symfony2\src\Scourgen\WebBundle/Resources/views/Default/index.html.twig".
你看一下app/config/config.yml里,assetic:bundles是否被注释掉。
1.如果注释掉”bundles:“这行的话,assetic会自动发现所有的bundle
2.如果没有注释掉的话,你得自己把需要用到assetic管理功能的bundle的名字写进去,比如这样:
bundles: [ ScourgenWebBundle ]
参考,解决~~
网上可找到相关资料bundles: [ AqingWebBundle ]
好的,已经搞定,多谢多谢。