有没有一种方法可以使用Zendesk语义模板访问数组的特定元素。 https://connect.zendesk.com/hc/en-us/articles/115010914668-Using-the-email-editor#topic_h2z_hn5_r1b
通常,您会遍历数组的每个元素
{% for image in 'images' | EventProperty %}
<img src="{{ image.src }}">
{% endfor %}
但是对于我当前的用例,我只需要第一个元素。我想做类似以下的事情:
<img src="{{ images[0].src }}">
答案 0 :(得分:0)
语法看起来像Liquid Markup,我知道他们在产品的其他区域使用Liquid。您尝试过Liquid Filter 'first'吗?
{% assign my_array = "apples, oranges, peaches, plums" | split: ", " %}
{{ my_array.first }}