0
我正在使用angularjs來呈現分層結構。測試用例在http://jsbin.com/agodoj/1/edit爲什麼ng-repeat在第3級停止工作
我的問題是爲什麼ng-repeat停止在第3級工作?由於
這裏是我的模型
function Test($scope) {
$scope.cars = {
chrylser: {
nameplates: [{
name: "np1",
trims: [
"tirm1", "trim2"
]
}]
}
};
}
這裏是我的模板
<div ng-app ng-controller="Test">
<div ng-repeat="(key, value) in cars">
{{key}}
<ul>
<li ng-repeat="np in value.nameplates">{{np.name}}, {{np.trims}}</li>
<ul>
<li ng-repeat="trim in np.trims">
(ng-repeat stop working here) {{trim}}
</li>
</ul>
</ul>
</div>
</div>
你說得對。謝謝 – 2013-03-27 18:08:46