如何在symfony 2中使用assetic组织与包含的模板或嵌入式控制器相关的资产?

时间:2012-06-12 20:20:38

标签: symfony assetic

我真的想在我的symfony 2项目中使用assetic,因为它有许多有用的功能,但我不确定实现以下要求的最佳方法。

我有几个js文件可以包含在所有页面中。但是,其中一些仅与页面模板的子集相关,其中我包含需要特定javascript文件的特定模板(或嵌入特定控制器)。

现在我有以下选择:

  1. 我在布局和特定页面模板中创建了javascripts的块元素(我用javascript包含了模板,例如templateWithComplexJs.html.twig),我使用{{parent()覆盖了这个块},如下所述:Combining Assetic Resources across inherited templates

    {# ... specific.html.twig #}  
    {% extends 'MyBundle::layout.html.twig' %}
    
    ...  
    {% include 'MyBundle:Foo:templateWithComplexJs.html.twig' %}  
    ...  
    
    {% block javascripts %}
        {{ parent() }}
        {% javascripts  
            '@MyBundle/Resources/public/js/specific/complex.js'  
        %}  
        <script src="{{ asset_url }}"></script>  
        {% endjavascripts %}  
    {% endblock %}  
    

    我看到的缺点:
    a)当我调整包含的模板(例如更新到新的js lib)时,我必须调整所有页面模板,包括它们。在一个容易导致错误的复杂系统中 b)可能会发生两次javascript,一次在布局中,一次在模板的javascript中,资产不知道,因为它们被单独处理。

  2. 我在布局中包含了所有需要的js文件,然后我只需要在调整所包含的模板时更改一个位置,而且我不太可能包含两次javascripts。

    我看到的缺点:
    由于js文件的大小很大,我宁愿只在极少数情况下将它们包含在我真正需要的时候。

  3. 在这个相关的问题(Twig Assetic Stylesheets Among Several Templates)中,它表示目前无法通过资产获得令人满意的解决方案,但我想我并不是唯一一个有这些要求并且想要使用资产的人。

    那么,这种情况的最佳做法是什么?

1 个答案:

答案 0 :(得分:7)

你可以更简单地获得你的目标。在配置文件中设置资产组并为其命名,而不是在所有模板中执行此操作。这是一个简单的例子。

# Assetic Configuration
assetic:
    debug:          %kernel.debug%
    use_controller:
        enabled:    false #%kernel.debug%
        profiler:   false
    java: /usr/bin/java
    node: /usr/bin/node
    assets:
        backend_css:
            inputs:
                - %kernel.root_dir%/../path/to/some/css/file.css
                - %kernel.root_dir%/../path/to/some/less/file.less
            filters:
                - less
            output: css/backend.css
        frontend_css:
            inputs:
                - %kernel.root_dir%/../path/to/some/css/file.css
                - %kernel.root_dir%/../path/to/some/less/file.less
            filters:
                - less
            output: css/frontend.css
        backend_js:
            inputs:
                - %kernel.root_dir%/../path/to/some/js/file.js
                - %kernel.root_dir%/../path/to/some/js/other.js
            filters:
                - yui_js
            output: js/backend.js
        frontend_js:
            inputs:
                - %kernel.root_dir%/../path/to/some/js/file.js
                - %kernel.root_dir%/../path/to/some/js/other.js
            filters:
                - yui_js
            output: js/frontend.js
        special_backend_js:
            inputs:
                - %kernel.root_dir%/../path/to/some/js/file.js
                - %kernel.root_dir%/../path/to/some/js/other.js
            filters:
                - yui_js
            output: js/special_backend.js
    filters:
        cssrewrite: ~
        cssembed: 
            jar: %kernel.root_dir%/Resources/java/cssembed-0.4.5.jar
        # closure:
        #     jar: %kernel.root_dir%/Resources/java/compiler.jar
        yui_css:
            jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar
        yui_js:
            jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar
        less:
            node_paths: [%kernel.root_dir%/Resources/node_modules]
            apply_to: "\.less$"

现在,在您的枝条模板中,您可以执行以下操作:

{% block javascript %}
<script src="{{ asset('js/backend.js') }}"></script>
{% endblock javascript %}

并为您的css资产执行相同操作。这样,如果你想在你的backend.js集合中添加另一个库,或者包含一些js功能组,比如special_backend,它就是你模板中的一个内容,当你进行更改时,你只需要处理你的配置定义。

我希望能帮到你一点点。我确信还有其他方法可以完成这项工作,但这是我首选的方法。