if($code!=200){
$user=new UserAuth();
$user->mobile=$register['mobile'];
$user->password=md5($register['password']);
$user->username=$register['username'];
$authKey=$this->getRandChar(5);
$user->authKey=$authKey;
$user->accessToken=md5($authKey);
//yii2 错误提示
if (!$user->hasErrors() && $user->save()) {
JsonLib::show(1105,'用户注册成功');
} else {
print_r($user->getErrors());//打印错误
exit();
}
}else{
JsonLib::show(1204,'验证码不正确');
}
相关文章
- 02-20[Go] go语言gin框架封装返回的错误码类
- 02-20VC中链接错误,提示string重定义
- 02-20Django新版添加app提示模块不存在解决方法 INSTALLED_APPS 错误
- 02-20问题-[VMware Workstation]断电后,重启电脑,之后就提示“内部错误”
- 02-20解决EasyDSS、EasyNVR流媒体RTMP、HLS(m3u8)、HTTP-FLV播放提示H5播放错误的问题
- 02-20springboot的Web项目编译运行时提示错误:Field userService in com.cetc.UserManger.controller.UserController require
- 02-20IDEA提示“错误运行Test2: 无法启动过程,工作目录D:\test2\test2不存在”
- 02-20WebBrowser 禁用脚本错误提示
- 02-20Unity3d 错误提示 GUI Error: You are pushing more GUIClips than you are popping. Make sure they are balan
- 02-20axios 使用方法 以及服务器端 设置拦截发送404状态的提示语,当网络错误时候返回前端的提示, 当网络正常的时候返回后端的提示