$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调用。但错误:预检的响应无效(重定向)。