我的JSON文件的内容是:
{
"categories":[
{
"dept_id":"123",
"category_name":"database",
"category_discription":"list of database",
"current time":"2016-07-21 06:27:17",
"id":"1"
},
{
"dept_id":"1234",
"category_name":"debugging",
"category_discription":"program debugger",
"current time":"2016-07-21 06:32:24",
"id":"2"
},
{
"dept_id":"12345",
"category_name":"system analyzer",
"category_discription":null,
"current time":"2016-07-21 06:33:23",
"id":"3"
}
],
"departments":[
{
"name":"manpreet singh",
"address_info":"qadian",
"current time":null,
"id":"1"
},
{
"name":"tushal gupta",
"address_info":"amritsar",
"current time":"2016-07-21 06:10:14",
"id":"2"
},
{
"name":"haroop singh",
"address_info":"amritsar",
"current time":"2016-07-21 06:11:12",
"id":"3"
}
],
"digital_marketing":[
{
"dept_id":"123",
"phone":"99889988",
"mobile":null,
"email":"thbs@gmail.com",
"web":null,
"facebook":null,
"twitter":null,
"linkedin":null,
"current time":"2016-07-21 06:10:16",
"id":"1"
},
{
"dept_id":"1234",
"phone":"998899888",
"mobile":null,
"email":null,
"web":null,
"facebook":"gtudgal@fb.com",
"twitter":"tushalgupta",
"linkedin":null,
"current time":"2016-07-21 06:30:19",
"id":"2"
},
{
"dept_id":"12345",
"phone":"99889877",
"mobile":null,
"email":"fhdts@mail.com",
"web":null,
"facebook":"sdfh33@fb.com",
"twitter":null,
"linkedin":null,
"current time":"2016-07-21 06:30:13",
"id":"3"
}
]
}
我正在使用它,但是它只显示类别数据:
<table border="1">
<b><tn>categories</tn></b>
<tr>
<th>dept_id</th>
<th>category_name</th>
<th>category_discription</th>
<th>current time</th>
<th>Id</th>
</tr>
<tr ng-repeat="x in retails">
<td>{{ x.dept_id }}</td>
<td>{{ x.category_name }}</td>
<td>{{ x.category_discription }}</td>
<td>{{ x.currenttime }}</td>
<td>{{ x.id }}</td>
</tr>
</table>
<script>
var app = angular.module('myApp', []);
app.controller('dataCtrl', function($scope, $http) {
$http.get("/home/manpreet/Desktop/retails.json").then(function (response) {
$scope.retails = response.data.categories;
});
});
</script><br>
<div ng-app="myApp2" ng-controller="customersCtrl3">
<table border="1">
<b>
<tn>departments</tn>
</b>
<tr>
<th>Name</th>
<th>Address_info</th>
<th>currenttime</th>
<th>Id</th>
</tr>
<tr ng-repeat="x in retails">
<td>{{ x.name }}</td>
<td>{{ x.address_info }}</td>
<td>{{ x.currenttime }}</td>
<td>{{ x.id }}</td>
</tr>
</table>
</div>
<script>
var app = angular.module('myApp2', []);
app.controller('customersCtrl3', function($scope, $http) {
$http.get("/home/manpreet/Desktop/retails.json").then(function (response){
$scope.retails = response.data.departments;
});
});
</script>
这段代码只显示表类别中的类别数据。我想显示不同表中的所有数据,例如部门表中的部门数据,数字营销表中的digital_marketing数据。我如何使用angularjs在单个代码中做到这一点。
最佳答案
无需一次又一次地创建模块ng-App
且脚本相同
您可以将任意数量的数据分配给同一ng-app
中的范围变量
<div ng-app="myApp2" ng-controller="customersCtrl3">
<table border="1">
<b><tn>categories</tn></b>
<tr>
<th>dept_id</th>
<th>category_name</th>
<th>category_discription</th>
<th>current time</th>
<th>Id</th>
</tr>
<tr ng-repeat="x in retails">
<td>{{ x.dept_id }}</td>
<td>{{ x.category_name }}</td>
<td>{{ x.category_discription }}</td>
<td>{{ x.currenttime }}</td>
<td>{{ x.id }}</td>
</tr>
</table>
<table border="1">
<b><tn>departments</tn></b>
<tr>
<th>Name</th>
<th>Address_info</th>
<th>currenttime</th>
<th>Id</th>
</tr>
<tr ng-repeat="x in retails">
<td>{{ x.name }}</td>
<td>{{ x.address_info }}</td>
<td>{{ x.currenttime }}</td>
<td>{{ x.id }}</td>
</tr>
</table>
<table border="1">
//Same for the digital_marketing table
</table>
</div>
<script>
var app = angular.module('myApp2', []);
app.controller('customersCtrl3', function($scope, $http) {
$http.get("/home/manpreet/Desktop/retails.json").then(function (response){
$scope.categories = response.data.categories;
$scope.department = response.data.departments;
$scope.digital_marketing= response.data.digital_marketing;//same for this table
});
});
</script>
关于javascript - 我想在表Angularjs中显示此Json数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39117549/