这是我第一次使用Angularjs,如果有人能帮我解决代码中的问题,我将非常感谢。(一个用户可能有多个compte,一个compte也可能有多个mandats,当我单击AddMandatItem
时,它会添加一个<div>
,这是使用<ng-repeat>
添加的,但是当我第二次点击AddMandatItem
(在另一个compte上)时,它添加了2个项目(第一个项目在第二个项目之前添加)。我可以引用父compte,以便我的<ng-repeat>
添加我想为每个compte添加的任务数吗?
<button ng-click="addCompteItem()">Add a compte</button>
<div ng-repeat="compteItem in compteItems track by $index">
<h2>
<strong>Compte {{$index + 1}}</strong>
</h2>
<label>Id</label>
<input type="text" ng-model="compte[$index].id" />
<label>Unique reference</label>
<input type="text" ng-model="compte[$index].uniqueRef" />
<div ng-repeat="mandat in mandats track by $index>
<label>Id</label>
<input ng-model="compte[$parent.$index].mandat[$index].id" />
<div>
<button ng-click="addMandatItem($parent.$index,$index)">Add a mandat for that compte
</button>
</div>
应用程序.js:
$scope.compteItems = [{}];
$scope.addCompteItem = function(){
$scope.compteItems.push({});
};
$scope.mandats=[];
$scope.addMandat = function(i,j){
console.log(i);
console.log(j);
$scope.mandats.push([]);
var newMandat = {};
$scope.mandats[i][j]=newMandat;
};
3条答案
按热度按时间nvbavucw1#
我找到了这个解决方案,我将其分享给其他有同样问题的人:这是我的App.js
还有:
1mrurvl12#
您可以将某些变量用于索引,也可以使用。有关详细信息,请参阅AngularJS Documentation
gz5pxeao3#
按照你的要求,我相信你想做这样的事情:
HTML格式:
JS: