gpt4 book ai didi

php - Assets 中的 Twig 连接

转载 作者:可可西里 更新时间:2023-10-31 23:40:10 24 4
gpt4 key购买 nike

这很好用:

   {% image '@TestBundle/Resources/pic2/image.jpg' %} 
<img src="{{ asset_url }}" alt="Example" />
{% endimage %}

但我需要通过显示上传图片的名称而不是 image.jpg 来使其更具动态性。我需要以某种方式将 Assets 与 {{ entity.picture }}

连接起来

有没有办法在 twig 中做到这一点而不会出现错误?

{% image '@TestBundle/Resources/pic2/' . {{ entity.picture }} %}  

最佳答案

你可以试试这个:

// config.yml add a global variable (Or just assign the path from the controller)
twig:
globals:
imagepath: "your/path/to/thepictures/"

我不认为这在 Twig 中有效,因为此图像用于 assets optimization :

{% image {{ imagepath ~ entity.picture }} %}  

所以替代方案可以是:

<img src="{{ imagepath ~ entity.picture }}">

关于php - Assets 中的 Twig 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27138651/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com