0

在 Symfony 1.4 中,我使用以下内容仅包含所需的资产:

apps/myApp/config/view.yml(每个页面使用的通用资产)

stylesheets:   [main.css]
javascripts:    [lib/jquery.js, lib/jquery.qtip.js, backend/main.js]

apps/myApp/modules/someModule/templates/someTemplateSuccess.php(仅用于此视图、部分等的资产)

<?php use_stylesheet('backend/datagrid.css') ?>
<?php use_javascript('backend/datagrid.js') ?>

然后最后将它们链接到apps/myApp/templates/layout.php

<?php include_stylesheets() ?>
<?php include_javascripts() ?>

那么,如何在 Twig 视图中使用 AsseticBundle 呢?

我真的很困惑......谢谢!

4

1 回答 1

3

好的,我到了:

https://github.com/kriswallsmith/symfony-sandbox/commit/f1fc1d0cf2fe69660f94f33719a4508d6e9e25ae

有效!

它是这样的:

src/MySite/MyBundle/Resources/css/datagrid.css

将其包含在视图中:

src/MySite/MyBundle/Resources/views/MyViews/myview.html.twig

{% block stylesheets %}
    {% stylesheets '@MySiteMyBundleBundle/Resources/css/datagrid.css' %}
        <link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
    {% endstylesheets %}
{% endblock %}

最后,让我们打印它:

应用程序/资源/视图/base.html.twig

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>{% block title %}Lol!{% endblock %}</title>
        {% block stylesheets %}{% endblock %}
        <link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
    </head>
    <body>
        {% block body %}{% endblock %}
        {% block javascripts %}{% endblock %}
    </body>
</html>

伟大的!

更新:

我仍然不知道为什么,但是:

{% stylesheets '@MySiteMyBundleBundle/Resources/css/*.css' output='css/all.css' %}
    <link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
{% endstylesheets %}

只能将 debug 设置为 false,因此最好的方法是配置它:

应用程序/配置/config.yml

# Assetic Configuration
assetic:
    debug:          false
    use_controller: true
    write_to: %kernel.root_dir%/../web
    filters:
        cssrewrite: ~
于 2011-04-17T08:22:07.050 回答