我有这个 JSON 数组,其中包含大量person
数据,每个数据的类型都类似于"hr"
or "accounting"
。
JSON 数组如下所示:
{
"0": {
"id": "2",
"name": "blabla",
"type": "hr"
},
"1": {
"id": "3",
"name": "bub",
"type": "hr"
},
"2": {
"id": "4",
"name": "ula",
"type": "accounting"
},
"3": {
...
}
}
我想以这样的方式显示它们ul
:
<ul>
<li><p>hr</p>name: blabla<p></li>
<li><p>hr</p>name: bub<p></li>
<li><p>hr</p>......</li>
</ul>
<ul>
<li><p>accounting</p>name: ula<p></li>
<li><p>accounting</p>......</li>
</ul>
但我不知道如何分离 JSON 数组或如何正确循环它以显示它。