我使用inoic angularjs,我想获取数据飞行机场arr和dep的信息。我无法在html中看到信息,并且在控制台angularjs中出现错误SyntaxError:missing;在声明机场json之前。
代码
(function() {
var app = angular.module('starter.bgw', []);
app.controller('myctlr', function($scope, $http) {
var service_url = "/airport.json?code=bgw";
$http.jsonp(service_url).success(function(data) {
$scope.request = data.result.request.page;
});
});
})();
数据json
{
"result": {
"request": {
"callback": null,
"code": "BGW",
"format": "json",
"limit": 25,
"page": 1,
"plugin": null,
"plugin-setting": {
"schedule": {
"mode": null,
"timestamp": 1473105000
}
},
"token": null
}
}
}
html中没有信息显示和错误SyntaxError:missing;声明airprot json之前