我正在尝试创建一个表单,该表单允许将具有名称和年龄字段的人员对象附加到 Angularjs 中的数组中,但我无法正确呈现字段名称。这是不起作用的代码:
%tr
%td{ 'ng-repeat' => 'h in maintitles' }
%input{ :type => 'text', :value => '{{h.name}}', 'ng-model' => 'newPerson.' + '{{h.name}}' }
%td
%button{ 'ng-click' => 'addItem(newItem)' } Add
(haml 确实编译正确——每个输入字段都有一个ng-model
属性newPerson.{{h.name}}
,并且该value
字段正确呈现为 的值{{h.name}}
,而不是文本“{{h.name}}”——所以问题肯定出在 javascript 中。)
如果我手动命名每个字段,例如:
%tr
%td{ 'ng-repeat' => 'h in maintitles' }
%input{ :type => 'text', :value => '{{h.name}}', 'ng-model' => 'newPerson.name' }
%td{ 'ng-repeat' => 'h in maintitles' }
%input{ :type => 'text', :value => '{{h.name}}', 'ng-model' => 'newPerson.age' }
%td
%button{ 'ng-click' => 'addItem(newItem)' } Add
然后一切都按预期工作。
如何让 Angular 让我在 ng-model 指令中使用变量?
编辑:根据雅罗斯拉夫的回答,我通过创建一个maintitles
数组的克隆来解决这个问题,其中包含一个空数据字段来保存新值:
function AdminItemCtrl($scope, $http, $routeParams) {
$scope.titlename = $routeParams.itemType;
$http.get('/data/' + $scope.titlename + 'items.json').success(function(data) {
$scope.maintitles = data.titles;
$scope.main = data.data;
$scope.emptyItem = angular.copy($scope.maintitles);
for (var i = 0; i < $scope.emptyItem.length; i++) {
delete $scope.emptyItem[i].editable;
$scope.emptyItem[i].data = '';
}
$scope.cleanEmpty = angular.copy($scope.emptyItem);
});
$scope.addItem = function(newItem) {
var newObject = {};
for (var i = 0; i < newItem.length; i++)
newObject[newItem[i].name] = newItem[i].data;
$scope.main.push(newObject);
$scope.emptyItem = angular.copy($scope.cleanEmpty);
};
}
然后在 HAML 中:
%tr
%td{ 'ng-repeat' => 'h in emptyItem' }
%input{ :type => 'text', :placeholder => '{{h.name}}', 'ng-model' => 'h.data' }
%td
%button{ 'ng-click' => 'addItem(emptyItem)' } Add