我有这个JSFiddle代码:
<div ng-app="angularjs-starter" ng-controller="MainCtrl">
<fieldset data-ng-repeat="choice in choicesA">
<input type="text" ng-model="choice.name" name="" placeholder="Enter name">
<button class="addfields" ng-click="addNewChoice()">Add fields</button>
<button class="remove" ng-click="removeChoice()">-</button>
</fieldset>
<div id="choicesDisplay">
{{ choicesA }} <br/>
{{ choicesB }}
</div>
</div>
JS:
var app = angular.module('angularjs-starter', []);
app.controller('MainCtrl', function($scope) {
$scope.choicesA = [{id: 'choice1'}, {id: 'choice2'}];
$scope.choicesB = [];
$scope.addNewChoice = function() {
var newItemNo = $scope.choicesA.length+1;
$scope.choicesA.push({'id':'choice'+newItemNo});
};
$scope.removeChoice = function() {
var lastItem = $scope.choicesA.length-1;
$scope.choicesA.splice(lastItem);
};
});
如您所见,我有一个函数addNewChoice()
,它将对象添加到数组choicesA
,然后根据choicesA
数组上的对象编号添加文本框。
仅当我点击第一个fieldset
上的Add fields
按钮时,我才需要向第一个fieldset
添加文本框,并且我在这些生成的文本框上写的数据是绑定的添加到choicesB
数组的单独对象。对于所有其他Add fields
按钮也是如此(因此每个Add field
按钮只能将文本框添加到其自己的fieldset
标记中),这也会根据{中的对象数量生成{1}}数组。
我尝试了一切,我无法弄明白。如果它有点不清楚,我可以解释一下。提前谢谢你。
编辑:谢谢大家的帮助,让我解释一下:
我有一个名为Resource&amp;的Spring REST API和两个choicesA
个对象(JPA实体)。 Action,对象Resource包含Actions列表,Action包含对Resource的引用。
当我加载页面时,我得到一个Java
对象的数组,我已经保存了一个名为Resource
的$ http.get()方法从数据库返回的数组,结构的结构是像这样:
choicesA
我有另一个方法$ http.post(),它发布一个名为[
{"idResource":1, "nameResource": "resName1"},
{"idResource":2, "nameResource": "resName2"}
......etc depends oh how much rows I got from the DB
]
的{{1}}个对象数组,这个对象是一个单独的非嵌套数组。数组结构如下:
Action
所以choicesB
数组包含我用$ http.get()得到的[
{"idAction":1, "nameAction":"nameAction1", "resource":
{"idResource":1, "nameResource": "resName1"},
{"idAction":2, "nameAction":"nameAction2", "resource":
{"idResource":2, "nameResource": "resName2"},
..
}
{...},
{...}
...
]
个对象,然后我想填充choicesA
数组中的Resource
个对象然后使用$ http.post()保存数组,每个Action
应包含一个choicesB
对象。例如,如果我单击在第一个Action
标记中添加更多操作,则意味着我要填充Resource
数组中的第一个fieldset
对象,并为其分配第一个{{1}对象位于Action
数组等..
我希望能够确定操作的数量并填充它们,然后将它们保存到choicesB
数组中。但是每个动作都与我描述的特定Resource
对象有关。
我希望现在很清楚,我很抱歉&amp;再次感谢你。
答案 0 :(得分:1)
我相信你要做的是拥有2个嵌套数组。
然后你会嵌套ng-repeat
。您可以通过将该数组作为函数
查看
<fieldset data-ng-repeat="group in choices">
<div ng-repeat="choice in group">
<input type="text" ng-model="choice.name" name="" placeholder="Enter name">
<button class="addfields" ng-click="addNewChoice(group)">Add fields</button>
<button class="remove" ng-click="removeChoice(group)">-</button>
</div>
</fieldset>
JS
$scope.choices = [
// first group
[{id: 'choice1'}, { id: 'choice2'}],
//second group
[{}]
];
$scope.addNewChoice = function(group) {
var newItemNo = group.length + 1;
group.push({
'id': 'choice' + newItemNo
});
};
$scope.removeChoice = function(group) {
group.pop();
};
请注意,您需要稍微修改ID
系统。通常情况下,这将来自服务器
的 DEMO 强>
答案 1 :(得分:1)
也许我误解了你的问题。也许这有助于解决您的问题。
jsfiddle上的实例。
var app = angular.module('angularjs-starter', []);
app.controller('MainCtrl', function($scope) {
$scope.choicesA = [{
id: 'choice1',
choicesB:[]
}, {
id: 'choice2',
choicesB:[]
}];
$scope.addNewChoice = function() {
var newItemNo = $scope.choicesA.length + 1;
$scope.choicesA.push({
'id': 'choice' + newItemNo,
choicesB:[]
});
};
$scope.removeChoice = function(ind) {
$scope.choicesA.splice(ind,1);
};
$scope.addNewChoiceB = function(choice) {
var newItemNo = choice.choicesB.length + 1;
choice.choicesB.push({
'id': 'choice' + newItemNo
});
};
$scope.removeChoiceB = function(choice,ind) {
choice.choicesB.splice(ind,1);
};
});
fieldset {
background: #FCFCFC;
padding: 16px;
border: 1px solid #D5D5D5;
}
.addfields {
margin: 10px 0;
}
#choicesDisplay {
padding: 10px;
background: rgb(227, 250, 227);
border: 1px solid rgb(171, 239, 171);
color: rgb(9, 56, 9);
}
.remove {
background: #C76868;
color: #FFF;
font-weight: bold;
font-size: 21px;
border: 0;
cursor: pointer;
display: inline-block;
padding: 4px 9px;
vertical-align: top;
line-height: 100%;
}
input[type="text"],
select {
padding: 5px;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="angularjs-starter" ng-controller="MainCtrl">
<button class="addfields" ng-click="addNewChoice()">Add choice</button>
<fieldset data-ng-repeat="choice in choicesA">
<input type="text" ng-model="choice.name" name="" placeholder="Enter name">
<button class="remove" ng-click="removeChoice($index)">-</button>
<button class="addfields" ng-click="addNewChoiceB(choice)">Add fields</button>
<div data-ng-repeat="choiceb in choice.choicesB">
<input type="text" ng-model="choiceb.name" name="" placeholder="Enter field">
<button class="remove" ng-click="removeChoiceB(choice,$index)">-</button>
</div>
</fieldset>
<div id="choicesDisplay">
<pre>choicesA = {{ choicesA }}</pre>
<pre data-ng-repeat="choiceb in choicesA">choicesB = {{ choiceb.choicesB }}</pre>
</div>
</div>
<强>更新强>
jsfiddle上的实例。
答案 2 :(得分:1)
<div ng-app="angularjs-starter" ng-controller="MainCtrl">
<fieldset>
<input data-ng-repeat="choice in choicesA" type="text" ng-model="choice.name" name="" placeholder="Enter name">
<button class="addfields" ng-click="addNewChoice()">Add fields</button>
<button class="remove" ng-click="removeChoice()">-</button>
</fieldset>
你的要求的第一部分是通过这个解决的,文本框被添加到特定字段集,第二个要求我不清楚用这个替换你的htmlcode