jsonp请求返回404,但网址是活动的

时间:2017-06-15 19:30:46

标签: angularjs rest jsonp

我一直试图点击这个REST服务器,但遇到了CORS问题。所以我想如果我做了一个jsonp请求,我就可以得到json数据。这是请求

  var url = "http://10.10.100.89:8080/locations";
  var trustedUrl = $sce.trustAsResourceUrl(url);

$http.jsonp(trustedUrl)
    .then(function(data){
        console.log(data);
    }, function(error){
      console.log(error);
    });

然后控制台显示404,但是网址是实时的,当我使用浏览器导航到网址时,我看到了json when I navigate to the url this is what I see

为什么我会看到404?

0 个答案:

没有答案