我遇到了一个奇怪的问题,即使用 ng-list 的输入在向模型中添加项目时没有更新。我创建了一个小提琴来更好地说明这个问题:http: //jsfiddle.net/rtZY3/
// Doesn't update ng-list input
$scope.tags.push(tag);
// Does update ng-list input
var tags = angular.copy($scope.tags);
tags.push(tag);
$scope.tags = tags;
这似乎不是预期的行为,特别是因为如上面 jsFiddle 中$scope.tags
的标记所示已正确更新。<pre>