给出以下示例:
var animal= null;
$.post("ajax.php",{data: data}, function(output){
animal = output.animal;
},"json");
alert(animal);
原则上,我希望变量在 ajax 函数的成功回调之外返回一些东西,并在帖子之外声明它。但是它仍然返回“null”。我究竟做错了什么?
和$.post()
异步一样。所以你不能做你想做的事。取而代之的是,您必须使用如下回调函数:
var animal= null;
$.post("ajax.php",{data: data}, function(data){
// this callback will execute after
// after finish the post with
// and get returned data from server
animal = data.animal;
callFunc(animal);
},"json");
function callFunc(animal) {
alert(animal);
}
问题是警报命令在成功函数之前执行,因为 $.post 根据定义是异步的。
为了做你想做的事,你必须使用同步请求(在请求结束之前代码不会执行),如下所示:
var animal = null;
$.ajax({
url: 'ajax.php',
async: false, // this is the important line that makes the request sincronous
type: 'post',
dataType: 'json',
success: function(output) {
animal = output.animal;
}
);
alert(animal);
祝你好运!