在手柄中,我有一个字符串数组和一个对象数组。我想循环遍历对象数组,然后为每次迭代我想循环遍历字符串数组,然后在字符串数组的索引[当前字符串]处打印当前对象元素。
'{{#each data}}'
'{{#each fields}}'
'{{{../[this]}}}'
'{{/each}}'
'{{/each}}'
data
是对象数组,fields
是字符串数组。
如何从data
访问对象元素并使用fields
中当前元素的键获取值?
由于