在名为“Banner”的内容类型中,我有一个“Link”类型的字段,其中“Machine name”= field_url_destinazione。
如果我在我的树枝上写下这个:
{% if content %}
{{ content }}
{% endif %}
我看到标题,日期和我的字段“field_url_destinazione”
我只需要显示这个字段,有办法吗?
我试过:
{{ content.field_url_destinazione }}
{{ fields.field_url_destinazione }}
{{ field.field_url_destinazione }}
{{ field_url_destinazione }}
答案 0 :(得分:1)
你的第一次尝试
{{ content.field_url_destinazione }}
绝对应该有用。它可能不起作用的唯一原因是字段名称中的错误(或树枝模板中的任何其他错误)。
- content:所有节点项。使用{{content}}打印全部,或打印{{content.field_example}}等子集。使用{{content | without(' field_example')}}暂时禁止打印给定的子元素。