0

我有一个 Ajax 调用:

$.ajax({
  url : 192.168.4.111/.....,
  type : "GET",
  async : "true",
  username : username,
  password : password,
  success : controller.handleSuccess,
  error : controller.handleError,
  beforeSend : function(xhr) {
    xhr.setRequestHeader('X-CSRF-Token', "fetch");
    xhr.withCredentials = true;
  }
});

但这不起作用,我得到了回应,但是有数据。响应为“空”。谁能帮我?如果我在android模拟器的浏览器中调用相同的html项目,没有问题,只有当我想用Phonegap创建自己的项目时。

4

1 回答 1

0

I assume you tested it on android. Note that make this work in browser you have to use JSONP or another crossdomain techniqe.

于 2012-08-31T07:30:53.863 回答