的json看起來像下面AngularJS NG-重複使用嵌套的JSON
$scope.peoples = [people:{
name: 'Mike ',
age: 20
}, people:{
name: 'Peter S ',
age: 22
}];
注:我不能改變JSON結構。
這裏是我的代碼ng-repeat
看不懂json
。
<div ng-controller="MyCtrl">
<table class="table table-hover">
<tr ng-repeat="p in peoples">
<td> Name: {{ p.name }} </td>
<td> Age: {{ p.age }} </td>
</tr>
</table>
</div>
var app = angular.module('myApp', []);
function MyCtrl($scope) {
$scope.peoples = [people:{
name: 'Mike ',
age: 20
}, people:{
name: 'Peter S ',
age: 22
}];
}
我不明白這個「**我不能改變json結構**」,如果你在控制檯'var a = [people:{name:'Mike', age:20 }人:{ 名稱: '彼得·S', 年齡:22 }]'你**未捕獲的SyntaxError:意外的標記:(...)**。這就像期待'如果x == 3> 4'工作,因爲你不能改變的if語句 –