var username = 'xxxx';
var password = 'zzzz';
var xmlstring="<root><request><AADHAAR_ID>aaaaaaa</AADHAAR_ID><NAME>hhhhhhh</NAME><DOB></DOB><MOBILENO></MOBILENO><FLAG>QVVUSA==</FLAG><RESPONSE_CODE></RESPONSE_CODE><ERROR_CODE></ERROR_CODE><OTP></OTP><PIN></PIN><DEPT>aswww</DEPT><VENDORID>MTAwSFBN</VENDORID></request></root>";
function make_base_auth(username, password) {
var tok = username + ':' + password;
var hash = btoa(tok);
return "Basic " + hash;
}
$.ajax({
type: "POST",
async: true,
dataType:"xml",
contentType: "application/xml",
url: 'http://test/test/test?reqXml='+xmlstring,
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', make_base_auth(username, password));
},
success: function(){console.log('success');
alert('success');
},
error: function(data) {console.log('error');
console.log(data);
}
});
嗨,上面是我的代码请告诉我错过了什么。我正在尝试从我的本地服务器执行一个简单的PST请求,并且此请求需要一个Authorization标头才能正常运行。我已经执行了POST请求并在Postman中成功检索了数据,Ajax导致“无效的HTTP状态代码302”错误,我的错误是XMLHttpRequest无法加载.....对预检的响应无效(重定向)
答案 0 :(得分:1)
Why my $.ajax showing "preflight is invalid redirect error"? 可能的答案检查链接。
我认为您有可能尝试传递标头或将http更改为https。请参考链接以获得更好的解决方