我的树枝模板中有一个图像标签,其中的src可以连接到外部站点(工作正常)。不过,棘手的是,我需要使用节点中的值将其添加到外部url中。
{% set image_src = "https://media.example2.edu/sites/default/files/faculty/" . {{content.field_username}}. ".jpg" %}
<img {{attributes.setAttribute('src', image_src)}} />
以上是我目前所拥有的,但不起作用。我也没有连接尝试过,那也不起作用。如果有人可以将我指向与相关的帖子(我已经搜索过但没有找到),或者是教程...甚至为我提供了答案,我将不胜感激。
更新:
下面是我的更新代码,非常感谢@DarkBee帮助使用串联符号。我现在遇到的问题是将数组分解为key:value对,并且仅使用{{content.field_username}}
<div {{attributes.setAttribute('id',"profile_photo") }}>
{% set image_src = "https://media.davenport.edu/sites/default/files/faculty/" %}
{% set username = content.field_username %}
{% set jpg = ".jpg" %}
<img src= {{image_src ~ username ~ jpg}} /> {#{{attributes.setAttribute('src', image_src)}} />#}
</div>