我正在尝试创建一个表单,允许将具有name和age字段的person对象附加到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指令中使用变量?
编辑:根据Yaroslav的回答,我通过创建一个带有空数据字段的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
答案 0 :(得分:2)
简而言之,Angular不支持这一点。 NgModelController
在插入之前得到它的名字,因此在错误的版本下发布。有一个开放的github issue(现在挂了7个月)。我不得不修改Angular以使其正常工作。我回答了similar question,你可以在那里阅读一些细节。还有working example with fixed Angular。