迭代Handlebars中高一级的地图

时间:2013-10-03 05:47:08

标签: handlebars.js

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

但这不起作用。

1 个答案:

答案 0 :(得分:0)

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