我使用 Handlebars.js 作为 js 模板。而且我需要遍历数组,但直到数组完成,但少于特定次数。
所以假设我有以下 JSON:
{
"obj":
[
{"user": "Fred", "age": "23", "type": "personal"},
{"user": "Ralph", "age": "32", "type": "business"},
{"user": "John", "age": "44", "type": "other"},
{"user": "Alex", "age": "44", "type": "other"},
{"user": "Stan", "age": "6", "type": "other"},
{"user": "Cartman", "age": "5", "type": "other"},
{"user": "Kennie", "age": "6", "type": "other"}
]
}
但我只需要输出前 4 个用户,所以 Stan、Cartman 和 Kennie 不会出现。如果我需要迭代所有内容,我会使用这样的东西:
<ul>
{{#each obj}}
<li>
<div>{{this.user}}</div>
<div>{{this.age}}</div>
<div>{{this.type}}</div>
</li>
{{/each}}
</ul>
我该如何修改它?
问题 2:目前我使用 obj 只是因为我无法弄清楚如何迭代仅由数组组成的 JSON:
[
{"user": "Fred", "age": "23", "type": "personal"},
{"user": "Ralph", "age": "32", "type": "business"}
]
如何在没有那个讨厌的 obj 的情况下更改我的模板以进行迭代?