当我尝试使用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
我该如何解决这个问题?
答案 0 :(得分:174)
是的我试过了,它解决了我的问题。对于那些最初不知道如何添加的人(比如我)而言:
app/config/config.yml
assetic:
bundles: []
bundles: []
中输入您的包名称例如,如果您的捆绑包是 Acme\DemoBundle
,请执行以下操作
assetic:
bundles: [ AcmeDemoBundle ]
AcmeDemoBundle
周围没有引号。而已。 (Symfony2中)
答案 1 :(得分:24)
如果您希望资产在默认情况下包含您的捆绑包,则可以(使用#)注释行bundles: []
例如:
assetic:
debug: "%kernel.debug%"
use_controller: false
#bundles: [ ]
#java: /usr/bin/java
答案 2 :(得分:10)
有时您需要动态做出决定,然后您可以使用DependencyInjection。
例如loads and manages configuration:
<?php
namespace You\ExampeBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/* ... */
class YouExampeExtension extends Extension
{
/* ... */
public function load(array $configs, ContainerBuilder $container)
{
/* ... */
$aAsseticBundle = $container->getParameter('assetic.bundles');
$aAsseticBundle[] = 'YouExampeBundle';
$aAsseticBundle[] = 'AnotheBundle';
$container->setParameter('assetic.bundles', $aAsseticBundle);
/* ... */
}
}
您可以使用更复杂的逻辑来操纵配置(在合理的限制范围内)
答案 3 :(得分:3)
您需要将捆绑包添加到捆绑:[]行的资产:app / config / config.yml文件中的部分(symfony 2.1)