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では未定義のエラーが発生します。