我嘗試使用Angular和ng-repeat從Ajax json加載HTML表格。 我的問題是,JSON有點複雜,我不知道如何訪問「informationstyp」,這是我想要在表中顯示。 JSON的根(「值」)是一個列表。下一級(「informationstyper」)也是一個列表。使用angular和ng-repeat從Ajax JSON加載表格
如何將「informationstyp」放入表格中? 我應該寫什麼而不是{{data.arendeslagId}}在我的HTML?
我想在我的表是什麼:
FK1002
FK1003
FK1004
謝謝您的幫助。
我的HTML:
<table class="table table-hover">
<thead>
<tr>
<th>Arendeslagid</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="data in infotyper">
<td>{{data.arendeslagId}}</td>
</tr>
</tbody>
</table>
我的javascript:
$scope.infotyper = "";
$scope.invoke = function() {
$.ajax({
"cache": false,
"async": true,
"crossDomain": true,
"url": url",
"method": "POST",
"headers": {
"cache-control": "no-cache",
},
success: function (response) {
$scope.infotyper= response;
}
});
};
我的JSON響應:
您可以在角度而不是jQuery的AJAX使用$ http服務的方法。 – hasan
@hasan謝謝你,我現在已經把它改成了$ http – chichi