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}}
但是,這是行不通的。
似乎做工精細(http://jsfiddle.net/ambiguous/g9mgp/),你在做什麼,從那個小提琴有什麼不同? –
我已經把我的數據在小提琴和改變的變量名,和它的作品,因爲我想。但我直接從小提琴中複製模板,並不像小提琴那樣渲染。它跳過{{#../var}}循環。我猜測我的環境中有些東西。我使用的是最新版本的把手(1.0.0),我已經試過上的jsfiddle(1.0.0-rc.3)的版本,但它仍然無法正常工作。 – user1005909
糟糕,我傳遞給模板的變量沒有我想要的所有數據。 – user1005909