我的属性字段包含字符串数组:
控制器中的我:
$scope.data = {};
$scope.fields = [
"new0.name",
"new0.type",
"new0.address",
"new0.city",
"new0.postalCode"
];
在视图中我有:
<div class="control-group" ng-repeat="f in fields">
<label class="control-label">Some field name</label>
<div class="controls">
<input type="text" name="{{f}}" ng-model="data.f" class="input-xlarge">
</div>
</div>
在 ng-repeat 中,如何将 f 的值连接到ng-model
以获取,例如ng-model =“data.new0 .NAME“?
答案 0 :(得分:2)
要使用变量引用对象的属性,请使用括号表示法
data[f]