1
我很努力把它變成ng選項。它甚至有可能嗎?什麼是角度ng選項相當於這個選擇?
<select ng-model="detail_type_id">
<optgroup ng-repeat="type in data.detailTypes" label="{{type.name}}">
<option ng-repeat="t in type.children" value="{{t.id}}">{{t.name}}</option>
</optgroup>
</select>
DetailTypes看起來是這樣的:需要選擇
[
{"id":7,
"parent_id":null,
"name":"Contact",
"children":[
{"id":8,
"parent_id":7,
"name":"Address",
"children":[]
},
{"id":12,
"parent_id":7,
"name":"Something else",
"children":[]
}
]},
{"id":16,
"parent_id":null,
"name":"Other",
"children":[
{"id":10,
"parent_id":16,
"name":"Remarks",
"children":[]}
]
}
]
子ID。嵌套不能更深。
對象有點大和翻譯,所以可能有錯誤。問題是你可以寫來實現相同的功能嗎? – icebreaker
噢,我知道了。我會試一試。 –
不錯的解決方案,但作爲一種改進,我建議你在控制器中做一次而不是做一個過濾器。 – developer033