我跟踪了调试器,并且正在从服务器接收数据,但是当将数据从 GetAjax 函数传递到 GetPlacesAroundMe 时,objData 变量始终未定义。
如您所见,我将 ajax 设置为同步。
*代码在下面添加
谢谢,我将不胜感激。
Model.prototype.AjaxGet = function(sUrl,sData,sType){
var result="";
$.ajax({
url: sUrl+"?"+sData,
type: sType,
async: false,
success: function(data){
return (data);
},
error:function(exception){
alert(exception.responseText);
}
});
//return result;
}
Model.prototype.GetPlacesAroundMe = function(data){
var objData = this.AjaxGet(ip_address+"/purpleserver/index.php/selectController/GetPlacesAroundMe",data,"get");
return objData;
}