Drupal 8打印视图树枝内的字段

时间:2017-09-28 12:43:15

标签: drupal twig drupal-8

在名为“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 }}

1 个答案:

答案 0 :(得分:1)

你的第一次尝试

{{ content.field_url_destinazione }}

绝对应该有用。它可能不起作用的唯一原因是字段名称中的错误(或树枝模板中的任何其他错误)。

default node template中所述:

  
      
  • content:所有节点项。使用{{content}}打印全部,或打印{{content.field_example}}等子集。使用{{content | without(' field_example')}}暂时禁止打印给定的子元素。
  •