0
list1からlist2を更新しようとしていますが、そのためにng-changeを使用しました。選択でng-changeが動作しない
私のアプリは完全に設定されており、htmlページのコントローラは適切に設定されています。
私は私の最初のリスト1からelemtを選択したとき
<label>NameLIst1</label>
<select ng-model="idLIST1"
ng-change="updateList2(idLIST1)"
ng-options="elt.id as elt.name for elt in list1">
<option value="">select one</option>
</select>
<label>Name LIST 2</label>
<select ng-model="idLIST2"
ng-options="elt.id as id.name for elt in list2">
<option value="">select one</option>
</select>
$scope.updateList2 = function(id){
alert("id ="+id);
}
コンソールにエラーがありますか?アプリはまったく動作しますか? –
作業中の[Plunker](https://plnkr.co)をアップロードしてください... –
'updateList2'関数にパラメータを渡す必要はありません。 '$ scope.updateList2 = function(){alert($ scope.idLIST1)}' – Zooly