Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上,我想知道以下是否可行:
<img src="{{ asset('bundles/acme/images' {% if something is defined %}'-blah{{ someId }}'{% endif %} '.png') }}" />
据此,答案可能是否定的,但我想确定一下。
为什么不将 if 放在asset-call 之外,如下所示:
asset
<img src=" {%- if something is defined -%} {{ asset('bundles/acme/images-blah' ~ someId ~ '.png') }} {%- else -%} {{ asset('bundles/acme/images-blah.png') }} {%- endif -%} " />