我将 img 存储在Acme/DemoBundle/Resources/public/img/weather_icon/blizzard.gif
我想将此 img 放入我的模板中,所以我做了
<img src="{{ asset('bundles/acmedemo/img/weather_icons/blizzard.gif') }}" />
和
<img src="{{ asset('..img/weather_icons/blizzard.gif') }}" />
和
这没有用。我做了资产:安装和资产:转储
解决了它的工作
<img src="{{ asset('img/weather_icons/Blizzard.gif') }}" alt="Symfony!" />