动态添加按钮,动态添加文本框AngularJS

时间:2016-02-29 03:30:38

标签: javascript java angularjs data-binding dynamic-html

我有这个JSFiddle代码:

docs

<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;再次感谢你。

3 个答案:

答案 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