Khi tôi đang cố gắng sử dụng {% javascript %}
thẻ TWIG để liên kết đến .js
tệp của mình, nó sẽ trả lại cho tôi ngoại lệ sau:
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".
Của tôi index.html.twig
trông giống như:
{% javascripts 'CompetitiongameBundle/Resources/views/public/js/*'%}
<script type="text/javascript" src="{{ asset_url }}" ></script>
{% endjavascripts %}
Hello {{ name }}!
<a href='{{ nexturl }}' >Login</a>
Gói của tôi đã có trong tệp cấu hình khi tôi thực hiện:
php app/console config:dump-reference assetic
Làm thế nào tôi có thể sửa lỗi này ?