私は以下のJSON形式を持っています。私はHTMLテーブルと一緒に配置して表示する必要があります。私はAngularJSでこれを行う必要があります。私は正常に動作していた通常のJSON形式で試しましたが、このJSONではうまく動作しません。この例は検索のインデックスを作成するためのものですので、JSONをそのまま維持する必要があります。例えばJSON付きHTMLテーブル
:
<div ng-app="myApp" ng-controller="customersCtrl">
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in names">
<td>{{x.Name}}</td>
<td>{{x.City}}</td>
<td>{{x.Country}}</td>
</tr>
</tbody>
</table>
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope) {
$scope.names =[
{
"Name" : "Max Joe",
"City" : "Lulea",
"Country" : "Sweden"
},
{
"Name" : "Manish",
"City" : "Delhi",
"Country" : "India"
},
{
"Name" : "Koniglich",
"City" : "Barcelona",
"Country" : "Spain"
},
{
"Name" : "Wolski",
"City" : "Arhus",
"Country" : "Denmark"
}
];
});
</script>
</div>
は今、私はJSON形式以下と同じことを実行する必要があります。
{
"data": [
[
"1",
"supply chain Management",
"https://www.google.co.in/",
"abc",
1234567,
"[email protected]",
"assdadsddsf",
"1"
],
[
"2",
"Data Tower",
"https://www.google.co.in/",
"abc",
1234567,
"[email protected]",
"assdadsddsf",
"2"
],
[
"3",
"Enter business",
"https://www.google.co.in/",
"abc",
1234567,
"[email protected]",
"assdadsddsf",
"3"
],
[
"4",
"IOT",
"https://www.google.co.in/",
"abc",
1234567,
"[email protected]",
"assdadsddsf",
"4"
],
[
"5",
"Supplys Chain",
"https://www.google.co.in/",
"abc",
1234567,
"[email protected]",
"assdadsddsf",
"5"
],
[
"6",
"Supplys Chain",
"https://www.google.co.in/",
"abc",
1234567,
"[email protected]",
"assdadsddsf",
"6"
]
]
}
-
- {{x}}