使用Yii2框架怎么实现登陆添加验证码功能-创新互联
这篇文章给大家介绍使用Yii2框架怎么实现登陆添加验证码功能,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:申请域名、虚拟空间、营销软件、网站建设、河南网站维护、网站推广。models中
LoginForm.php
public $verifyCode; public function rules() { return [ …… ['verifyCode', 'captcha', 'on' => 'login'], //验证码 ]; } public function scenarios() { $scenarios = parent::scenarios(); $scenarios['login'] = ['username', 'password', 'rememberMe', 'verifyCode']; return $scenarios; }
controller中
public function actions() { return [ 'error' => [ 'class' => 'yii\web\ErrorAction', ], 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, 'width' => 100, 'height' => 34, 'padding' => 0, 'minLength' => 4, 'maxLength' => 4, ], ]; } public function actionLogin() { if (!\Yii::$app->user->isGuest) { return $this->goHome(); } $model = new LoginForm(['scenario' => 'login']); if ($model->load(Yii::$app->request->post()) && $model->login()) { return $this->goBack(); } else { return $this->render('login', [ 'model' => $model, ]); } }
view中
'login-form']); ?> = $form->field($model, 'verifyCode')->widget(Captcha::className(), [ 'template' => '{input}', 'options' => ['class' => 'form-control','placeholder'=>"验证码"], 'imageOptions'=>['alt'=>'点击换图','title'=>'点击换图', 'style'=>'cursor:pointer'] ])->label(false) ?>{image}
关于使用Yii2框架怎么实现登陆添加验证码功能就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
网页名称:使用Yii2框架怎么实现登陆添加验证码功能-创新互联
地址分享:http://scyanting.com/article/ddspgs.html