次のような 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}}
しかし、これはうまくいきません。