ajax函数返回未定义
我有一个使用 AJAX(PHP) 验证代码的函数。但是,当我尝试运行它时,当它应该返回 true
或 false
时,它会返回 undefined
。
函数:
function verifyViite(viite) {
$.get('dataminer.php?question=validateViite&q='+viite, function(data) {
jQuery.globalEval(data);
if(valid == 1) {
return true;
}
else {
return false;
}
});
}
data
为 valid = 1;
或 valid = 0;
I have a function to validate a code with AJAX(PHP). However, when I try to run it, it returns undefined
when it should return true
or false
.
function:
function verifyViite(viite) {
$.get('dataminer.php?question=validateViite&q='+viite, function(data) {
jQuery.globalEval(data);
if(valid == 1) {
return true;
}
else {
return false;
}
});
}
The data
is either valid = 1;
or valid = 0;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 AJAX 请求是异步的,因此无法返回 Callback 返回值。
在回调本身内执行调用
verifyViite
的任何代码,而不是返回 true 或 false。或者,您可以使用 同步AJAX请求。
You can't return the Callback return value due to the AJAX request being asynchronous.
Execute whatever code calling
verifyViite
inside the callback itself, instead of returning true or false.Alternativly, you can have synchronous AJAX request.
由于函数veryViite 不返回任何内容,因此预期结果为undefined。由于它是异步的,您必须提供一个回调函数,该函数将在成功的 ajax 调用时调用。像这样的东西;
调用会是这样的;
since the function veryViite doesn't return anything, undefined is the expected result. Since its asynchronouse, you would have to give a callback function that would be called on successful ajax call. Something like this;
and the call would be like;