码迷,mamicode.com
首页 > 其他好文 > 详细

yii2.0表单自带验证码

时间:2017-03-30 17:32:41      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:wms   mwl   sm2   open   sax   bms   rpc   gic   ttf   

Yii2.0的自带的验证依赖于GD2或者ImageMagick扩展。

使用步骤如下:

第一步,控制器:

在任意controller里面重写方法

技术分享

代码折叠,点击查看

技术分享
<?php

namespace frontend\controllers;

use Yii;
use app\models\login;
use app\models\search\UserSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\captcha\CaptchaAction;
/**
 * UserController implements the CRUD actions for User model.
 */
class LoginController extends Controller
{
     public function actions()
    {
        return [
            ‘error‘ => [
                ‘class‘ => ‘yii\web\ErrorAction‘,
            ],
            ‘captcha‘ => [
                ‘class‘ => ‘yii\captcha\CaptchaAction‘,
                ‘fixedVerifyCode‘ => YII_ENV_TEST ? ‘testme‘ : null,
                ‘backColor‘=>0x000000,//背景颜色
                ‘maxLength‘ => 6, //最大显示个数
                ‘minLength‘ => 5,//最少显示个数
                ‘padding‘ => 5,//间距
                ‘height‘=>40,//高度
                ‘width‘ => 130,  //宽度  
                ‘foreColor‘=>0xffffff,     //字体颜色
                ‘offset‘=>4,        //设置字符偏移量 有效果
                //‘controller‘=>‘login‘,        //拥有这个动作的controller
                            ],
        ];
    }
    public function actionIndex()
    {
        $model=new Login;
        return $this->render(‘form‘,[‘model‘=>$model]);
    }
}
View Code

 第二步:模型层,

技术分享

代码如下:

技术分享
<?php
namespace app\models;
use Yii;
use yii\base\Model;
class Login extends Model
{
    public $verifyCode;
    public $name;
    public $pwd;
    /**
     * @return array the validation rules.
     */
    public function rules()
    {
        return [
            // verifyCode needs to be entered correctly
            [‘verifyCode‘, ‘captcha‘,‘message‘=>‘验证码不正确‘],
            [[‘name‘,‘pwd‘],‘required‘,‘message‘=>‘{attribute}不能为空‘]
        ];
    }
    /**
     * @return array customized attribute labels
     */
    public function attributeLabels()
    {
        return [
            ‘verifyCode‘ => ‘‘,
        ];
    }
}
View Code

最后views层表单:

技术分享

代码如下:

技术分享
<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;
use yii\captcha\Captcha;
/* @var $this yii\web\View */
/* @var $model app\models\User */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="user-form">

    <?php $form = ActiveForm::begin(); ?>

    <?= $form->field($model, ‘name‘)->textInput([‘maxlength‘ => true])->label(‘姓名‘) ?>

    <?= $form->field($model, ‘pwd‘)->textInput([‘maxlength‘ => true])->label(‘密码‘) ?>
    <?= $form->field($model, ‘verifyCode‘)->widget(Captcha::className(), [
            ‘template‘ => ‘<div class="row"><div class="col-lg-2">{input}</div><div class="col-lg-2">{image}</div></div>‘,
        ])->label(‘验证码‘)  ?>

    <div class="form-group">
       <?= Html::submitButton(‘提交‘, [‘class‘=>‘btn btn-primary‘,‘name‘ =>‘submit-button‘]) ?>
        <?= Html::resetButton(‘重置‘, [‘class‘=>‘btn btn-primary‘,‘name‘ =>‘submit-button‘]) ?>
    </div>

    <?php ActiveForm::end(); ?>

</div>
View Code

经过以上步骤,验证码基本就可以使用了。

yii2.0表单自带验证码

标签:wms   mwl   sm2   open   sax   bms   rpc   gic   ttf   

原文地址:http://www.cnblogs.com/wangzhilei/p/6646670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!