当我尝试使用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>
当我这样做时,我的捆绑包已经存在于配置文件中:
php app/console config:dump-reference assetic
我怎样才能解决这个问题 ?