Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 json 对象“FoundAt”:[1, 3] 如何使用 handlebar.js 表示数组中的值?
如果您指的是迭代数组,您可以使用{{each}}块来执行此操作,参考上面定义的数组使用以下内容:
{{each}}
{{#each jsonObjectName.FoundAt}} {{this}} {{/each}}
或者
{{#each number in jsonObjectName.FoundAt}} {{number}} {{/each}}
在官方文档中查找 Simple Iterators