微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – AngularJS从其他域请求JSON

我正在尝试使用以下代码从Wikia API检索数据.但一切似乎都失败了.据我所知,必须在服务器上启用CORS,我试图从中检索数据.但是我不知道Wikia是否就是这种情况.所以JSONP似乎是唯一的方法.但是我得到了错误

XMLHttpRequest无法加载http://adventuretime.wikia.com/api/v1/Articles/List?expand=1\u0026amp;category=Episodes\u0026amp;limit=200.请求的资源上不存在“Access-Control-Allow-Origin”标头.因此,不允许来源“http://website.com”访问.

我已经阅读了AngularJS文档:https://docs.angularjs.org/api/ng/service/ $http

w3schools:http://www.w3schools.com/angular/angular_http.asp

有关stackoverflow的大量问题.我的代码有什么可怕的错误吗? Angular应该原生支持CORS和JSONP请求

我的代码如下:

的index.html

<!DOCTYPE html>
<html ng-app="episodes">
<head>
    <Meta charset="UTF-8">
    <title>Episodes</title>
    <script src="angular.js"></script>
    <script src="workshop.js"></script>
</head>
<body ng-controller="AppController as app">

    <table>
        <thead> 
            <tr>
                <th>Title</th>
                <th>Url</th>
            </tr>
        </thead>
        <tbody>
            <tr ng-repeat="episode in app.episodes">
                <td>{{episode.title}}</td>
                <td>{{episode.url}}</td>
            </tr>
        </tbody>
    </table>

</body>
</html>

workshop.js

(function(){
    angular
        .module('episodes', [])
        .controller('AppController', function($http){
            var app = this;

            app.episodes = $http({
                url: "http://adventuretime.wikia.com/api/v1/Articles/List?expand=1&category=Episodes&limit=200",
                dataType: "jsonp"
            });

        });
})();

任何帮助表示赞赏!

在此先感谢您的帮助

编辑

响应标头是:

content-encoding: gzip
X-Content-Type-Options: nosniff
X-Cacheable: YES
Age: 0
X-Cache: ORIGIN, MISS, MISS
Content-Length: 21965
X-Served-By: ap-s21, cache-wk-sjc3160-WIKIA, cache-fra1233-FRA
X-Backend-Response-Time: 2.267
Server: Apache
X-Timer: S1439118796.704444,VS0,VE2447
vary: Accept-Encoding
Content-Type: application/json; charset=utf-8
Cache-Control: public, max-age=86400
Accept-Ranges: bytes
X-Cache-Hits: ORIGIN, 0, 0

解决方法:

尝试使用$http.jsonp(url);用于跨域请求;

Angularjs api – $http.jsonp();

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐