使用JSONP回调获取syxtax错误 - angularJs

时间:2016-04-11 21:15:41

标签: angularjs json jsonp

服务

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"

有关正在发生的事情的任何线索?

1 个答案:

答案 0 :(得分:0)

服务器未返回JSONP格式。已修复在服务器上。