AngularJS 指令模板 ng-repeat 有趣的替换

AngularJS directive templates ng-repeat funny substitution

我正在努力使用 angularjs 指令模板。 {{variable}} 在 ng-repeat 中以一种非常奇怪的方式工作,

<div ng-controller="MyCtrl">
    <h2>here i am</h2>
    <button type="button" ng-click="addItem()" class="btn btn-primary">Howdy</button>
    <div ng-repeat="item in items track by $index" itemlist></div>
</div>

<script type="text/ng-template" id="template.html">
    <div> 
        Howdy {{item.itemNum}} {{item.name}}
    </div>
</script>

var myApp = angular.module('myApp', []);

myApp.controller('MyCtrl', function ($scope) {
    $scope.count = 0;

    $scope.items = [];

    var newItem = {
        itemNum: 0,
        name: "New"
    };

    $scope.addItem = function () {
        newItem.itemNum = $scope.count;
        console.log('adding item ' + newItem.itemNum);
        $scope.items.push(newItem);
        $scope.count += 1;
    };
});

myApp.directive('itemlist', function ($compile) {
    return {
        templateUrl: 'template.html',
    };
});

我创建了一个 jsfiddle 来显示我的问题:http://jsfiddle.net/dk253/8jm5tjvf/23/

我错过了什么或做错了什么?

谢谢!

原因是您每次都在更新 same object reference (newItem) 上的 属性。所以它更新数组中的所有其他项目,因为它们都指向同一个对象,或者换句话说,它们都是相同的。您可以改为使用 angular.copy 获取对象的副本并推送该项目。

    var item = {
        itemNum: 0,
        name: "New"
    };

    $scope.addItem = function () {
        var newItem = angular.copy(item); //Get the copy
        newItem.itemNum = $scope.count;

Fiddle