1
我很困惑爲什麼我的{{item}}
未綁定到Controller的data
對象。Angular and Tables
我的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"];
}
感謝。你能告訴我如何讓每一天成爲一個專欄,而不是排? http://jsfiddle.net/rtFtA/12/ –
試試這個:http://jsfiddle.net/rtFtA/13/ –
謝謝@ su-。這工作 –