デバッガーに従って、サーバーからデータを受信していますが、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;
}