如何基于其他表单字段自动填充角度js中的文本字段

时间:2014-09-03 15:31:29

标签: angularjs hashmap

我以学生情景为例。 假设我选择id时需要填充以下范围变量。

$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中,我会写下更改和触发器。但是我如何以有棱角的方式实现这一点。

我可能希望将整个db值放在<studentid,List<studentdetails>>的散列映射中,并使用此散列映射值填充在相应的字段中。

1 个答案:

答案 0 :(得分:0)

我知道回答这个问题可能有点晚了,但我今天正在寻找Angular自动填充的答案,并发现你可以使用ng-value填充输入并传递它进入{{}}内的价值。

看起来像这样:ng-value="{{exampleValue}}

希望这有帮助。