0
我以學生場景爲例。 假設當我選擇一個id時,我需要填充下面的範圍變量。如何基於其他表單字段自動填充角度js中的文本字段
$scope.student.name;
$scope.student.address;
$scope.student.city;
$scope.student.zip;
下面的示例html。
<input type="text" ng-model="student.id"/>
<input type="text" ng-model="student.name"/>
<input type="text" ng-model="student.city"/>
<input type="text" ng-model="student.address"/>
<input type="text" ng-model="student.zip">
在一個常規的jQuery中,我會寫更改和觸發器。但是,我如何以角度來實現這一點。
我可能想要在<studentid,List<studentdetails>>
的散列映射中擁有整個db值,並使用此散列值填充到各自的字段中。
你如何選擇一個ID? – Wawy 2014-09-03 15:34:39
ng-change應該是你正在尋找的。 https://docs.angularjs.org/api/ng/directive/ngChange設置爲id輸入並使用函數來更新模型值以填充其他字段 – Lbatson 2014-09-03 15:38:34
這是[plunker](http:// plnkr。 co/edit/latcZyXWtYEIxuMcWYat?p =預覽)help? – bmleite 2014-09-03 15:48:22