Angularjs ng-repeat用于Dynamicform输入和字段集

时间:2017-05-29 00:00:41

标签: angularjs

请点击下面的演示

www.jsfiddle.net/rnnb32rm/1370

  

我的问题是:"添加输入"工作正常。但每当我调用"添加   字段",后续字段将与第一个字段同步。我想要   随后只填充一个输入。我目前正在使用2个数组选择和选择2。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

这是因为你使用相同的$scope.choices来绑定它们。我建议您将$scope.choices分配到$scope.choices2,以便它们成为特定字段。

$scope.choices2 = [
  {
    id: 'choice1',
    choices: [{id: 'choice1'}]
  }
];

并在内部ng-repeat,将字段与$scope.choices2.choices

绑定
<div  data-ng-repeat="choice in choice.choices ">

参考此enter image description here

已修复example