ajax jquery:那么返回值总是未定义的

时间:2013-10-04 17:13:52

标签: jquery ajax

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

}

0 个答案:

没有答案