您好我有三個收存箱項目服務&流 項目1到許多關係服務 服務1至amny關係流服務的 選擇應該是項目 和選擇的flowname應該是對的選擇速效服務 我想三個投寄箱 下面選擇後加載數據是代碼 HTML代碼angularjs多的Dropbox選擇數據加載
<fieldset ng-controller="tableController">
<select
ng-model="selectedProject"
ng-options="p.projectName for p in data | unique:'projectName'" >
</select>
<select
ng-options="p.serviceName for p in data | unique:'serviceName'"
ng-model="selectedService">
</select>
<select
ng-options="p.flowName for p in data | unique:'flowName'"
ng-model="selectedFlow">
</select>
</fieldset>
過濾器不工作
的Json使用 {ID 「:」 12345" , 「名」: 「日誌」, 「項目名」: 「PROJECT1」, 「服務名」: 「service1.process」, 「flowName」:「flow1.process」, 「aliasFlowName」:「alias1」,「version」:「1」}
也試過TR NG-重複數據=「詳細|過濾器:{項目名:selectedProject,服務名:selectedService,flowName:selectedFlow} – user3652391