ajax函数返回未定义

发布于 2024-12-08 15:57:02 字数 501 浏览 0 评论 0原文

我有一个使用 AJAX(PHP) 验证代码的函数。但是,当我尝试运行它时,当它应该返回 truefalse 时,它会返回 undefined

函数:

function verifyViite(viite) {
    $.get('dataminer.php?question=validateViite&q='+viite, function(data) {
        jQuery.globalEval(data);
        if(valid == 1) {
            return true;
        }
        else {
            return false;
        }
    });
}

datavalid = 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘦怹 2024-12-15 15:57:02

由于 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.

虚拟世界 2024-12-15 15:57:02

由于函数veryViite 不返回任何内容,因此预期结果为undefined。由于它是异步的,您必须提供一个回调函数,该函数将在成功的 ajax 调用时调用。像这样的东西;

function verifyViite(viite,cb) {
    $.get('dataminer.php?question=validateViite&q='+viite, function(data) {
        jQuery.globalEval(data);
        if(valid == 1) {
            cb(true);
        }
        else {
            cb(false);
        }
    });
}

调用会是这样的;

verifyViite(viite,function(good){
    alert(good);
});

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;

function verifyViite(viite,cb) {
    $.get('dataminer.php?question=validateViite&q='+viite, function(data) {
        jQuery.globalEval(data);
        if(valid == 1) {
            cb(true);
        }
        else {
            cb(false);
        }
    });
}

and the call would be like;

verifyViite(viite,function(good){
    alert(good);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文