AngularJS:No" Access-Control-Allow-Origin"标头出现在请求的资源上

时间:2015-04-09 19:13:31

标签: javascript html angularjs xmlhttprequest cors

我正在编写我的webApp,而且我正在使用AngularJS。在这个应用程序中,我创建了一个名为script.js的文件,并报告此代码:

var modulo = angular.module('progetto', ['ngRoute']);

    // configure our routes
    modulo.config(function ($routeProvider, $httpProvider) {
        $routeProvider

            // route for the home page
            .when('/', {
                templateUrl: 'listaFilm.html',
                controller: 'listaController'
            })

            // route for the description page
            .when('/:phoneName', {
                templateUrl: 'description.html',
                controller: 'descriptionController'
            });


            $httpProvider.defaults.headers.common['Access-Control-Allow-Origin'] = '*';

    });


    modulo.controller('listaController', function ($scope, $http) {
        $http.get('https://api.getevents.co/event?&lat=41.904196&lng=12.465974').success(function (data) {
            $scope.names = data;
            }).
            error(function (data, status) {
                $scope.names = "Request failed";
            });
    });

使用此代码,我按照RESTful原则调用API。当我运行代码时,我遇到了这个问题:

  

XMLHttpRequest无法加载https://api.getevents.co否   请求中存在“Access-Control-Allow-Origin”标头   资源。因此不允许来源“http://localhost:8383”   访问。

在网上阅读我明白我有一个叫做CORS的问题...我已经尝试了几个解决方案,但我没有解决问题。
我该如何解决这个问题呢? 我必须添加什么代码来修复它?

2 个答案:

答案 0 :(得分:57)

这是服务器端问题。您不需要为角色添加角度的任何标题。 您需要在服务器端添加标头:

Access-Control-Allow-Headers: Content-Type
Access-Control-Allow-Methods: GET, POST, OPTIONS
Access-Control-Allow-Origin: *

前两个答案:How to enable CORS in AngularJs

答案 1 :(得分:30)

CORS是跨域资源共享,如果您尝试从一个域访问另一个域,则会出现此错误。

尝试使用JSONP。在您的情况下,JSONP应该可以正常工作,因为它只使用GET方法。

尝试这样的事情:

var url = "https://api.getevents.co/event?&lat=41.904196&lng=12.465974";
$http({
    method: 'JSONP',
    url: url
}).
success(function(status) {
    //your code when success
}).
error(function(status) {
    //your code when fails
});