服务
some.factory('homeService', ['$http', function($http){
return {
getEvents : function(url) {
return $http.jsonp(url);
}
}
}]);
控制器
homeService.getEvents("http://server.some.io/s/first?callback=JSON_CALLBACK")
.then(
function(response){
$scope.events = response.data.events;
});
错误:未捕获的SyntaxError:意外的令牌:
这是:json对象:{"meta": {"has_next": false, "status": 200, "place":.....
错误指向" meta"
有关正在发生的事情的任何线索?
答案 0 :(得分:0)
服务器未返回JSONP格式。已修复在服务器上。