我在angularJs中有遞歸問題。兒童內部角兒童
我想重複從JSON文件中的所有名稱: 這裏是我的JSON文件結構:
var data = {
"id": "580",
"name": "test",
"status": "ACTIVE",
"parentId": null,
"children": [
{
"id": "581",
"name": "test 2",
"status": "ACTIVE",
"parentId": "580",
"children": [{
"id": "594",
"name": "test 3",
"status": "ACTIVE",
"parentId": "581",
"children": []
}]
}
]
}
所有我想要的只是知道如何使NG-重複孩子的孩子嗎?
有多少級的孩子?據我所知,你不能使用'ng-repeat'遞歸。 –
那些孩子可以動態生成。所以我沒有任何想法應該在那裏! –
谷歌'角遞歸樹'應該找到很多的解決方案,模塊,指令等 – charlietfl