ajaxReturn

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajaxReturn相关的知识,希望对你有一定的参考价值。

controller:

$info=array(‘error‘=>0,‘msg‘=>‘‘);
if($user_info){
    if($user_info[‘is_lock‘]){
       $info[‘error‘]=1;
       $info[‘msg‘]=‘该账户已被锁定‘;
       $this->ajaxReturn($info);

      }else{
     session(‘uid‘,$user_info[‘u_id‘]);
     cookie(‘uid‘,$user_info[‘u_id‘],3600);
      $this->ajaxReturn($info);
}
      }

}else{
      $info[‘error‘]=1;
      $info[‘msg‘]=‘用户名或密码错误!‘
       $this->ajaxReturn($info);
}


ajax得到的是json对象
var data=eval(‘(‘+res+‘)‘);
if(data.error){
    alert(data.msg);
}else{
    window.location.href="{:U(‘Index/index‘)}";
}






































以上是关于ajaxReturn的主要内容,如果未能解决你的问题,请参考以下文章