这是对https://drupal.stackexchange.com/a/236408/67965的修改,它循环遍历渲染子对象而不是字段#items
。
树枝延伸:
/**
* Generates a list of all Twig filters that this extension defines.
*/
public function getFilters() {
return [
new \Twig_SimpleFilter('children', array($this, 'children')),
];
}
/**
* Get the render children of a field
*/
public static function children($variable) {
return array_filter(
$variable,
function($k) { return (is_numeric($k) || (strpos($k, '#') !== 0)); },
ARRAY_FILTER_USE_KEY
);
}
然后,在树枝中,您可以直接通过渲染的子代,这有助于实现原子设计模式。定义一个实体模板,例如:
{% include '@molecules/grid.html.twig' with {
head : content.field_title,
grid_columns: content.field_collection_items|children
} %}
其中grid.html.twig是这样的:
{% if head %}
<div class="slab__wrapper">
{{ head }}
</div>
{% endif %}
<div class="grid">
{% for col in grid_columns %}
<div class="grid__column">
{{ col }}
</div>
{% endfor %}
</div>
这通常比必须渲染字段模板更有用,{{ content.field_collection_items }}
因为可以在父级设计元素的上下文中控制子级的布局。