我正在尝试在 ng-repeat 指令“内”使用 ng-model,该指令本身嵌套在 ng-repeat 指令中。
以下 jsfiddle 演示了我的问题以及我解决该问题的两次尝试。
我的控制器定义如下:
var mod = angular.module('TestApp', []);
mod.controller('TestCtrl', function ($scope) {
var machine = {};
machine.noteMatrix = [
[false, false, false],
[false, true, false],
[false, false, false]
];
$scope.machine = machine;
// ...
});
1.
<table>
<thead>
<tr>
<th>--</th>
<th ng-repeat="no in machine.noteMatrix[0]">{{$index+1}}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="track in machine.noteMatrix">
<td>--</td>
<td ng-repeat="step in track">
<input type="checkbox" ng-model="track[$index]"> {{step}}
</td>
</tr>
</tbody>
</table>
第一个示例/尝试更新控制器内的 machine.noteMatrix,但每次按下复选框时,angularjs 在 javascript 控制台中显示以下错误两次:
不允许在转发器中重复。中继器:步入轨道
有时它也会显示此错误:
不允许在转发器中重复。中继器:在 machine.noteMatrix[0] 中没有
2.
<table>
<thead>
<tr>
<th>--</th>
<th ng-repeat="no in machine.noteMatrix[0]">{{$index+1}}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="track in machine.noteMatrix">
<td>--</td>
<td ng-repeat="step in track">
<input type="checkbox" ng-model="step"> {{step}}
</td>
</tr>
</tbody>
</table>
第二个示例/尝试从 noteMatrix 正确读取数据,并且在选中/取消选中复选框时,javascript 控制台中不会显示任何错误。但是,更改它们的状态不会更新控制器中的 machine.noteMatrix(按“显示矩阵”按钮以查看 jsfiddle 中的矩阵)。
任何人都可以对此有所了解吗?:)