84

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

どうすればこれを修正できますか?

4

4 に答える 4

176

はい、試してみましたが、問題は解決しました。最初に追加する方法を知らない人(私のような)の場合:

  1. 編集app/config/config.yml
  2. 次にに行きますassetic:
  3. 資産の下で:に移動しますbundles: []
  4. //にbundles: []バンドル名を入力します

たとえば、バンドルがAcme\DemoBundleの場合、次のようにします

assetic:
   bundles: [ AcmeDemoBundle ]

の周りに引用符はありませんAcmeDemoBundle。それでおしまい。(Symfony2)

于 2013-01-09T08:38:26.103 に答える
24

アセットにデフォルトでバンドルを含める場合は、行にコメント(#付き)することができますbundles: []

元:

assetic:
    debug:          "%kernel.debug%"
    use_controller: false
    #bundles:        [ ]
    #java: /usr/bin/java
于 2013-01-10T09:51:02.273 に答える
10

その場で決定を下す必要がある場合は、DependencyInjectionを使用できます。

たとえば、構成をロードして管理するには、次のようにします。

<?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);

        /* ... */
    }
}

より複雑なロジックを使用して、構成を操作できます(妥当な制限内)

于 2014-03-05T10:43:19.573 に答える
3

バンドルをバンドルに追加する必要があります:[] app / config / config.ymlファイルのassetic:セクションの行(symfony 2.1)

于 2012-10-26T21:04:24.430 に答える