你只需要採取與空數組類型的另一個變量的範圍和推動按鈕點擊的價值。這裏我只是帶了一個文本輸入和按鈕供參考。但你可以用你的方式使用它。下面是代碼示例:
HTML:
<head>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-app="sampleApp">
<div ng-controller="myController">
<input ng-model="newItem" type="text" />
<button ng-click="add(newItem)">Add</button>
<div ng-repeat="arr in child">
{{arr}}
</div>
<div ng-repeat="arr in tempchild track by $index">
{{arr}}
</div>
</div>
</div>
</body>
</html>
JS:
(function(angular){
var module = angular.module("sampleApp",[])
.controller("myController", ["$scope", function($scope){
$scope.child = ['A', 'B' , 'C', 'D'];
$scope.tempchild = [];
$scope.add = function(item) {
$scope.tempchild.push(item);
};
}]);
})(window.angular);
正如你可以看到上面的代碼,你將需要採取另一種NG-重複它與新的$ scope變量迭代。
完整的示例,可以發現Here
我不明白你的question.sorry.can你refrase呢? – Serhiy
您有一個可搜索的組件,並且您希望將某些內容附加到UI組件而不更改父數據集。對?如果是,則創建一個與UI關聯的變量而不是數據。所以假設'var dataset = [...]; var extraOptions = [...]; var uiDataset = dataset.concat(extraOptions)'並將此變量與'ng-repeat'綁定 – Rajesh
您可以添加一個按鈕,並在點擊時編輯新條目 – Codesingh