我有一个内容类型(testnode),其中两个字段(field_one和field_two)的定义方式相同:
结构>内容类型>管理字段:
文字(纯文本,长)
结构>内容类型>管理字段>字段设置> 允许的值数:限制,1
field_one和field_two都设置为“这是一个测试”。
在模板(node--testnode--full.html.twig)中,我具有以下内容:
ListView.builder(
itemBuilder: (BuildContext context, int index) {
return Container(
color: (index % 2 == 0) ? Colors.red : Colors.green,
child: ListTile(
title: ...
),
);
},
)
即使将field_two设置为相同的值,该页面也仅显示field_one:
field_one:这是一个测试。
我想念什么?