0

我正在尝试jsonp使用以下代码拨打电话,但似乎对我不起作用。

代码

var url = 'http://z:15957/Category/Categories?callback=JSON_CALLBACK';
$http.jsonp(url).success(function (data) {
    $scope.results = data.feed.entry;
});

任何帮助将不胜感激。

4

1 回答 1

1

此问题似乎与您的 CORS(跨源资源共享)问题有关。拨打此电话后,您的.success回调不会触发,但.error会触发。请参阅有效的工作示例URL并查看.success成功执行的回调。

JSFiddle 链接

var url = 'http://z:15957/Category/Categories?callback=JSON_CALLBACK';

// valid URL example
//url = 'http://public-api.wordpress.com/rest/v1/sites/wtmpeachtest.wordpress.com/posts?callback=JSON_CALLBACK'

$http.jsonp(url)               
     .success(function (data) {
         console.log(data);
    }).error(function (data, status, headers, config) {
         console.log('error');         
    });
于 2015-01-19T14:59:59.940 回答