我很困惑为什么我{{item}}
没有被绑定到控制器的 data
对象。
我的 HTML 只是“{{item}}”。
<div ng-controller="Controller">
<table>
<tbody ng-repeat='items in data'>
<tr ng-repeat='item in items'>
<td>{{item}}</td>
</tr>
</tbody>
</table>
</div>
.
function Controller($scope) {
$scope.data = ["Monday", "Tuesday", "Wednesday"];
}