Validate.Custom返回false并使用livevalidation返回true

时间:2012-10-23 03:02:50

标签: php jquery livevalidation

我正在使用LiveValidation来验证我的表单,我正在尝试使用livevalidation验证带有ajax调用的用户名。如果返回值为true,则我无法获取返回值,因此我可以显示用户名是否可用,但在这种情况下,它始终返回用户名不可用。

HTML:

   <input type="text" id="username" name="username" />

JS:

   var username = new LiveValidation('username');
   username.add( Validate.Presence );
   username.add( Validate.Length, { minimum: 4, maximum: 10 } );
   username.add( Validate.Custom, { against: function() { return    check_username_availability() }, args:'Username Available' , failureMessage: 'Username is    Not Available' } ); 

  $.post(base_url+'cms-profile/profile_ajax/valid_username/',{username : $("#username").val()},function(data){

    if( data.success == 'no' )
     {
       return false;
     }

     if( data.success == 'yes' )
     {
        return true;
     }
    });

PHP:

   $check_username = 'some query here';

   if($check_username == true){
        $output = '{ "success": "no" }';
   }else{
       $output = '{ "success": "yes" }';
   }

   $output = str_replace("\r", "", $output);
   $output = str_replace("\n", "", $output);

   echo $output;

1 个答案:

答案 0 :(得分:0)

我不明白为什么你这样的事情变得复杂。我会使用JSON,这就是它的用途:

PHP:

echo json_encode( $check_username ); 
// I would rename this variable $is_valid_username 
// so it's more obvious what you're doing

JavaScript的:

$.post( base_url+'cms-profile/profile_ajax/valid_username/',
  { username : $("#username").val() }, 
  function( data ) {
    return $.parseJSON( data );
  }
});