我跟着调试器,我从服务器接收数据,但是当将数据从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;
}