AngularJS PHP CORS不能与FireFox一起使用

时间:2013-09-30 13:37:36

标签: javascript php apache angularjs cors

我在Firefox上使用AngularJS 1.08和CORS时遇到了一个奇怪的问题。我的AngularJS看起来像这样:

var MyApp = angular.module('MyApp');

MyApp.config(['$httpProvider', function($httpProvider) {
        $httpProvider.defaults.useXDomain = true;
        delete $httpProvider.defaults.headers.common['X-Requested-With'];
}]);

$http({
  dataType : 'json',
  url : 'http://api.example.com/restful',
  withCredentials : true,
  method: 'POST',
  data : {val1 : 'Test'}
}).success(function(response) { console.log(response)}).error(function(response) { console.log(response)});

PHP方面看起来像这样:

header('Access-Control-Allow-Origin: '. $_SERVER['HTTP_ORIGIN'] );
        header('Access-Control-Allow-Credentials: true' );
        header('Access-Control-Request-Method: *');
        header('Access-Control-Allow-Methods: POST, GET, PUT, DELETE, OPTIONS');
        header('Access-Control-Allow-Headers: *,x-requested-with,Content-Type');
        header('X-Frame-Options: DENY');

if(strtolower($_SERVER['REQUEST_METHOD']) == 'get') {
   //DO XYZ
} else if (condition) {
   //DO DEF
}

这在Chrome和Safari以及FireFox $ _GET请求上工作正常,但不是$ _POST。在Firefox和Apache上我得到一个错误500,在Nginx上它没有数据,并抛出一个空的错误消息。我的CORS设置有问题吗?

1 个答案:

答案 0 :(得分:0)

$_POST$_GET不起作用,您应该使用此代码来读取从角度发送的数据

                $data = file_get_contents("php://input");
                $objData = json_decode($data);

我强烈建议您查看AngularPHP,并保存一些令人头疼的问题