我正在使用Jquery 1.7.1并尝试访问Web服务。我已设置async: false
。当我向Web服务发送请求时,数据值将返回undefined
。我已经在WS调用完成后检查了Firebug并且它进入了成功处理程序,但是没有任何数据并且将值显示为未定义。
$.ajax({
type: "POST",
data: bodyGetResponse,
url: getresponse,
contentType: "application/json; charset=utf-8",
dataType: "json",
async:false,
success: function (data, textStatus, XMLHttpRequest) {
display(data);
},
failure: function() {
alert("failure");
}
});