问答详情
源自:7-3 如何把资源文件交给Symfony2

{%javascripts%}不能用

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".


提问者:Viren 2015-01-13 16:35

个回答

  • 洪涛
    2015-01-14 12:05:59

    你看一下app/config/config.yml里,assetic:bundles是否被注释掉。


    1.如果注释掉”bundles:“这行的话,assetic会自动发现所有的bundle

    2.如果没有注释掉的话,你得自己把需要用到assetic管理功能的bundle的名字写进去,比如这样:

    bundles:  [ ScourgenWebBundle ]

  • Micheal_Jordan
    2015-03-02 16:25:18

    参考,解决~~

  • 白菜乐园
    2015-01-28 13:37:35

    网上可找到相关资料bundles:        [ AqingWebBundle ]

  • Viren
    2015-01-14 13:43:02

    好的,已经搞定,多谢多谢。