是ajax和跨域的新手,我在这里很黑暗,我一直在尝试研究上面提到的标题,它一直指向跨域错误,有人可以帮助我如何修复代码到坚持这些跨领域。
这是我的代码:
function GetEmployeeInformation() {
$.ajax({
type: "GET",
url: "http://localhost:8080/SampleEmpService/Employees/" + $("#txtEmpno").val(),
contentType: "application/json; charset=utf-8",
cache:false,
dataType:"json",
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(xhr.statusText);
alert(thrownError)
},
success: function (response) {
$("#divEmployeeInfo").html("");
$("#divEmployeeInfo").append("Id: ").append(response.Empno + "<br />");
$("#divEmployeeInfo").append("Name: ").append(response.Ename + "<br />");
$("#divEmployeeInfo").append("Salary: ").append(response.Sal + "<br />");
$("#divEmployeeInfo").append("Deptno: ").append(response.Deptno + "<br />");
}
});
}
它在IE中工作正常但在chrome中给出了未定义的错误。
答案 0 :(得分:0)
对跨域使用dataType =“jsonp”。您可能还需要设置“crossDomain:true”。