0

我是 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 中给出了未定义的错误。

4

1 回答 1

0

跨域使用 dataType="jsonp"。您可能还需要设置“crossDomain: true”。

于 2012-08-26T19:04:38.713 回答