4

有没有比 Symfony2 + Assetic + Twig 生成图片网址更短的方法:

{% image '@ACMEBundle/Resources/public/img/longer.png' %}
  <img src="{{ asset_url }}" />
{% endimage %}

理想情况下,类似:

<img src="{{ bundle_resource_url('@ACMEBundle/Resources/public/img/shorter.png') }}" />
4

1 回答 1

7

如果您的资产在您的 web 目录中,请改用它:

<img src="{{ asset('bundles/acme/img/shorter.jpg') }}" />

您可以通过运行以下命令让 Assetic 为您安装资产:

app/console assets:install path/to/web

你的网络根在哪里path/to/web

于 2012-12-07T19:52:12.090 回答