我這個JSON:AngularJS - 選擇基於另外一個
{
"world": [{
"name": {
"en": "America"
},
"type": "continent",
"children": [{
"type": "state",
"name": {
"en": "Florida"
}
}, {
"type": "state",
"name": {
"en": "Hawaii"
}
}]
}, {
"name": {
"en": "Europe"
},
"type": "continent",
"children": [
]
}]
}
我需要做兩個選擇。第一個包含「大陸」類型的選擇,如果第一個子節點> 0且包含狀態選擇,則必須顯示基於第一個節點的另一個節點。
什麼的一些JS?你的代碼在哪裏? – DMCISSOKHO