function sqlhelper(datas)
{
var msgjson=null;
mui.ajax({
url : 'http://192.168.30.123:32100/login.aspx',
data : datas,
dataType: 'json',
type : 'get',
timeout : 10000,
async : false,
success : function(msg){
alert(JSON.stringify(msg));
msgjson=msg;
},
error : function(xhr,type,errorThrown)
{
return null;
}
});
return msgjson;
}
success里是能够获取msg数值的,但将msg赋值给msgjson后,整个函数的返回值就是null,请问如何调整
3***@qq.com (作者)
最后的 return msgjson 这个msgjson 是null
2017-11-09 14:57
p***@126.com
msgjson定义全局变量,msgjson=JSON.stringify(msg);试试
2017-11-09 15:03
3***@qq.com (作者)
msgjson 已经放在ajax之前定义了
2017-11-09 15:10