js的嵌套function中使用ajax返回值接收不到的问题与解决方法
2020-12-29 08:27
标签:lse rect html 不能 接收 correct 返回值 turn 方法 嵌套文件 有个方法 方法里面 if(data.result_code == 1){ obj = data.result_code; //就是这里 不能直接return 会得不到东西 } js的嵌套function中使用ajax返回值接收不到的问题与解决方法 标签:lse rect html 不能 接收 correct 返回值 turn 方法 原文地址:https://www.cnblogs.com/gooo/p/13820597.htmlvar a = add_answer(is_correct,select_answer,‘‘,1);
var obj = ‘‘; //注意要点
$.ajax({
url: "{{url(‘/answer.html‘)}}",
type: ‘post‘,
dataType: ‘json‘,
data: data,
async:false, //同步 只有在它执行完 才往下走
success:function(data) {
}
})
return obj; //在这里返回的数据 在调用的时候可以得到
文章标题:js的嵌套function中使用ajax返回值接收不到的问题与解决方法
文章链接:http://soscw.com/index.php/essay/39011.html