各位版上高手好,
目前使用XAMPP在本机端重现接手的php专案,
于登入页面输入正确的帐号密码后,
追查php的部份发现回传值都正常。
$.ajax({
url: curl,
type: 'POST',
data: $form.serialize(),
dataType:"json",
success: function(r) {
if(r.ok=='1'){
document.location=r.redirect;
}
else {
(省略)
}
},
error: function(jqXHR) {
alert("发生错误: " + jqXHR.status);
}
});
奇怪的是…Ajax得到的都是error…
在本机调用就没有CORS的问题。
想请问可能的原因为何呢??? 谢谢。