5

由于某种原因,我无法加载 css 文件。这是我使用的捆绑包的结构

BD
 WebsiteBundle
   public
     css

这是我尝试加载css文件的方式

{% stylesheets 'bundles/bdwebsite/css/*' filter='cssrewrite' %}
    <link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}

我做了assetic:dump

我做错了什么?

4

1 回答 1

13

bundles/bdwebsite/css/*您在stylesheets标签中提到。

通过这种方式,assetic 在web/bundles/bdwebsite/css(当前不存在的文件夹)中查找所有 css 文件,而不是在src/BD/WebsiteBundle/public/css.

为了在执行之前assetic:dump将您的文件放在正确的位置...

...使用app/console assets:install web它将它们复制到网络文件夹...

...或我app/console assets:install web --symlink对符号链接的建议。

于 2013-10-08T19:27:18.543 回答