我正在尝试从函数内部的jQuery.post中返回一个值,到目前为止返回的值是list
。
我如何解决?
undefined
它应该从函数function check_file(title) {
var url = "http://www.example.com/wp-content/check_download.php";
var data = {
title:title
};
jQuery.post(url,data,function(response) {
if(response==1) {
//if file exists
return 1;
} else {
//file doesn't exist keep checking until it does
setTimeout(function () {
check_file(title);
}, 1000);
}
});
}
返回1
但它返回check_file
我该如何解决?