如何在drupal 8中使用split twig template field content type?

时间:2016-09-21 20:29:11

标签: twig

我需要你的帮助来解决树枝上的裂缝问题。

  • 我想在数组中分离我的var {{label}}, 尝试使用

    {% set array = label | split (" ")%}
    
  

返回空

  • 我想分离一个数组中的字段节点, 尝试使用

    {% set array = content.field_fieldname | split (" ")%}
    
  

返回空

如果有人帮助我确定我做错了什么,或者我指出可以解决我的问题的指南和/或教程。感谢

2 个答案:

答案 0 :(得分:1)

如何检查数组是否为空?

base-files

Check this code online here

答案 1 :(得分:1)

{{label}}在模板中作为对象,我解决了获取字符串

{% set title = items[0]['content']['#context']["value"]|split(' ', 2) %}    

<h1>{{ title[0] }}</h1>
{{ title[1] }}