使用 bvalidator 检查用户名

发布于 2024-11-07 12:10:44 字数 542 浏览 0 评论 0原文

为什么我的函数的返回值总是 false

这是我的函数:

function checkUsername(username) {
    var ret=false;
    $.ajax({
        type: "POST",
        url: "user_validate.php",
        async: true,
        data: "username="+username,
        success: function(data){
            if(data == 0){
                ret = true;
            }else{
               ret = false;
            }
        },
        error:function() {
            alert("ERROR");
        }
    });
    return ret;
}

var ret 没有设置值吗? 有什么问题吗..? 谢谢之前..!

Why the return value of my function always false

this is my function:

function checkUsername(username) {
    var ret=false;
    $.ajax({
        type: "POST",
        url: "user_validate.php",
        async: true,
        data: "username="+username,
        success: function(data){
            if(data == 0){
                ret = true;
            }else{
               ret = false;
            }
        },
        error:function() {
            alert("ERROR");
        }
    });
    return ret;
}

Is var ret doesn't set the value?
Anything wrong with it..?
thanks before..!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

短暂陪伴 2024-11-14 12:10:44

由于 AJAX 调用是异步的,因此您需要在赋值之前返回 ret 的值。

使用回调方法处理结果:

function checkUsername(username, callback) {
  var ret=false;
  $.ajax({
    type: "POST",
    url: "user_validate.php",
    async: true,
    data: "username="+username,
    success: function(data){
      callback(data == 0);
    },
    error:function() {
      alert("ERROR");
    }
  });
}

用法:

checkUsername(username, function(success){
  if (success) {
    alert('User name is valid.');
  } else {
    alert('User name is not valid.');
  }
});

Because the AJAX call is asynchronpous, so you return the value of ret before it's assigned.

Use a callback method to handle the result:

function checkUsername(username, callback) {
  var ret=false;
  $.ajax({
    type: "POST",
    url: "user_validate.php",
    async: true,
    data: "username="+username,
    success: function(data){
      callback(data == 0);
    },
    error:function() {
      alert("ERROR");
    }
  });
}

Usage:

checkUsername(username, function(success){
  if (success) {
    alert('User name is valid.');
  } else {
    alert('User name is not valid.');
  }
});
起风了 2024-11-14 12:10:44

您对这里事物的范围有点困惑。 ajax 调用是异步的,因此当它应答时,它不再与调用它的函数有任何关系。您真正想做的是设置某种事件侦听器或(我的首选方法)回调。

另外,帮自己一个忙,使用缩短的语法 $.post(): http://api.jquery .com/jQuery.post/

function checkUsername(username) {
    $.post("user_validate.php", "username=" + username, function(data) {
        if (data == 0) {
            // Update DOM or element, or whatever you want to do
        } else {
            // Handle negative result
        }
    });
}

You're a little confused on the scope of things here. The ajax call is asynchronous, so by the time it answers, it no longer has anything to do with the function it was called from. What you really want to do is either set up some sort of event listener or a (my preferred method) callback.

Also, do yourself a favor and use the shortened syntax $.post(): http://api.jquery.com/jQuery.post/

function checkUsername(username) {
    $.post("user_validate.php", "username=" + username, function(data) {
        if (data == 0) {
            // Update DOM or element, or whatever you want to do
        } else {
            // Handle negative result
        }
    });
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文