2
从树枝模板中的字段打印具有多个条目的图像字段
我有一个用于自定义内容类型的树枝模板。它能够渲染大多数字段,但是我无法打印包含多个图像的图像字段。 节点--mycontenttype.html.twig包含 {{ content.field_mytitle }} {{ content.field_myheaderimage }} <div class="row expanded"> {% for galleryimage in content.field_gallery_images %} <div class="gallery-image-item"> {{ galleryimage }} </div> {% endfor %} </div> content.field_mytitle和content._field_myheaderimage输出标题和图像就很好。但是当我使用for循环时 {% for galleryimage in content.field_gallery_images %} <div class="gallery-image-item"> {{ galleryimage }} </div> {% endfor %} 我收到一个错误 Exception: Object of type Drupal\node\Entity\Node cannot …