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
이 문제를 어떻게 해결할 수 있습니까?