我有这个:
ShopBundle
Controller
Resources
public
images
marker.png
views
Default
index.html.twig
在我的 index.html.twig 中,我想要这个
<img src="{{ asset("images/marker.png") }}"/>
我希望使用我的包的人只想使用他们自己的 marker.png 来构建一个继承我的包并通过以下文件结构放置他们的图像:
MyShopBundle
Resources
public
images
marker.png
在 Symfony2 中是否有任何简单的方法可以做到这一点?需求似乎如此简单,以至于我不敢相信我还没有找到答案。
所以,
您如何在捆绑资源目录中的捆绑模板中包含图像资产?我已经做了一个
./apps/hfr/console assets:install web
,但我的模板没有打印正确的 url(/images/marker.png 而不是 /bundles/ShopBundle/Resources/public/images/png)是否可以覆盖我想要的方式或者我迷路了?