0

假设我有一些这样的 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}}

但这不起作用。

4

1 回答 1

0

糟糕,我传递给模板的变量没有我想要的所有数据。

于 2013-10-03T07:15:18.077 回答