您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用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中
<?php use yii\helpers\Html; use yii\bootstrap\ActiveForm; use yii\captcha\Captcha; ?> <?php $form = ActiveForm::begin(['id' => 'login-form']); ?> <?= $form->field($model, 'verifyCode')->widget(Captcha::className(), [ 'template' => '<div class="input-group input-group-lg col-md-8"><span class="input-group-addon"><i class="glyphicon glyphicon-eye-open red"></i></span>{input}<div class="input-group-addon" >{image}</div></div>', 'options' => ['class' => 'form-control','placeholder'=>"驗證碼"], 'imageOptions'=>['alt'=>'點擊換圖','title'=>'點擊換圖', 'style'=>'cursor:pointer'] ])->label(false) ?> <?php ActiveForm::end(); ?>
關于使用Yii2框架怎么實現登陸添加驗證碼功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。