假设我有一些这样的 JSON:
{
'my_items': [{'property': '1'}, {'property': '2'}, {'property': '3'}],
'other_items': [{'other_property': 'a'}, {'other_property': 'b'}, {'other_property': 'c'}]
}
我想遍历第my_items
一个,然后在 my_items 的每次迭代中,我想遍历other_items
.
我认为可以这样做:
{{#my_items}}
<div>{{property}}</div>
{{#../other_items}}
<div>{{other_property}}</div>
{{/../other_items}}
{{/my_items}}
但这不起作用。