如何使用angularjs中的http post发送xml数据并接收html

时间:2017-01-21 21:00:31

标签: angularjs xml post

$scope.PostCall = function(data,d) {
                    console.log(data);
                    $http({
                        url :"https://localhost:9443/root/p/testPost2",
                        method : "POST",
                        withCredentials: true,
                        cors:false,
                        headers: {
                            'Access-Control-Allow-Origin' : '*',
                            'Content-Type': 'application/xml',
                            'Access-Control-Allow-Headers' : 'Content-Type'
                                },
                     data: data,
                    }).success(
                            function(data) {
                                    $scope.alertModal("yha...");

                            }).error(
                            function(data,status, headers, config) {
                                $scope.alertModal("Error!"+status);
                                $scope.status = status;
                            });
                };

方法postcall用于对具有xml数据的其他源服务器的http post调用。但错误:预检的响应无效(重定向)。

0 个答案:

没有答案