无法从CROS域请求

时间:2016-05-28 11:20:36

标签: angularjs cross-domain jsonp angularjs-http

我想从url下载json

http://www2.rsphinx.com/static/misc/cric_scores.json

服务器也允许跨域请求。

但每次我收到跨域请求错误

我使用了以下代码

var def = $q.defer();

    $http({
                method: 'GET',
                url: ScoreServiceUrl
            }).success(function (data) {
                dummyData = data;
                def.resolve(data);
            })
               .error(function (err, data, hf, g) {
                   def.reject("Failed to get Score details");
               });
return def.promise;

我已尝试使用Jsonp方法,然后它返回404错误。 我也尝试了http://www2.rsphinx.com/static/misc/cric_scores.json?callback=JSON_CALLBACK网址,但这也无效。

有人可以告诉我,我在这里做错了什么。

由于

0 个答案:

没有答案