我有一个带有名称和 ID 的简单数组“名称”。我想从其他循环(电话)访问名称。代码如下:
{{#names}}
{{name}} - {{id}} // this shows for example '123456 - 001'
{{/names}}
{{#phones}}
{{number}} - {{id}}
-->here i'd like to fetch a 'name' from names based on phone {{id}}
{{/phones}}
有没有类似的东西{{../names.id['001']}}
??
这可能吗?