当我试图使用 TWIG {% javascript %}
标签链接到我的 .js
文件时,它返回给我以下例外:
An exception has been thrown during the compilation of a template ("You must add CompetitiongameBundle to the assetic.bundle config to use the {% javascripts %} tag in CompetitiongameBundle:game:index.html.twig.") in "CompetitiongameBundle:game:index.html.twig".
我的 index.html.twig
看起来像:
{% javascripts 'CompetitiongameBundle/Resources/views/public/js/*'%}
<script type="text/javascript" src="{{ asset_url }}" ></script>
{% endjavascripts %}
Hello {{ name }}!
<a href='{{ nexturl }}' >Login</a>
当我这样做时,我的 Bundle 已经出现在配置文件中:
php app/console config:dump-reference assetic
我该怎么补救?