我正在尝试jsonp
使用以下代码拨打电话,但似乎对我不起作用。
代码
var url = 'http://z:15957/Category/Categories?callback=JSON_CALLBACK';
$http.jsonp(url).success(function (data) {
$scope.results = data.feed.entry;
});
任何帮助将不胜感激。
我正在尝试jsonp
使用以下代码拨打电话,但似乎对我不起作用。
代码
var url = 'http://z:15957/Category/Categories?callback=JSON_CALLBACK';
$http.jsonp(url).success(function (data) {
$scope.results = data.feed.entry;
});
任何帮助将不胜感激。
此问题似乎与您的 CORS(跨源资源共享)问题有关。拨打此电话后,您的.success
回调不会触发,但.error
会触发。请参阅有效的工作示例URL
并查看.success
成功执行的回调。
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');
});