Yii2 验证码

注册时候增加验证码,  首先 在 SignupForm.php 增加:

 1 namespace app\modules\XXX\models;//这个你们写自己的命名空间,我以我的modules项目路径为例
 2 
 3 use Yii;
 4 
 5 use yii\base\Model;
 6 
 7 use yii\captcha\Captcha;
 8 
 9 class LoginForm extends Model
10 { 
11     public $name; 
12 
13     public $email; 
14 
15     public $subject; 
16 
17     public $body; 
18 
19     public $verifyCode;//验证码这个变量是必须建的,因为要储存验证码的值` /** * @return array the validation rules. */
20 
21     public function rules() 
22     { 
23            return [ 
24                     // name, email, subject and body are required 
25                     [['name', 'email', 'subject', 'body'], 'required'], 
26                     // email has to be a valid email 
27                     ['email', 'email'], 
28                     // verifyCode needs to be entered correctly 
29                     ['verifyCode', 'captcha'],//注意这里,在百度中查到很多教程,这里写的都不一样,最 简单的写法就像我这种写法,当然还有其它各种写法 
30                     //['verifyCode', 'captcha','captchaAction'=>'admin/index/captcha','message'=>'验 证码不正确!'], 这种写法在官网自带的LoginForm.php中有写到,大家可以没事看看 ]; 
31     }
32     /*
33     * * @return array customized attribute labels 
34     */ 
35     public function attributeLabels() 
36     { 
37          return [ 
38                    // 'verifyCode' => 'Verification Code', 
39                    'verifyCode' => '',//在官网的教程里是加上了英文字母,我这里先给去掉了,这里去 掉会不会产生影响因为我还没做接收验证,只做了验证码显示的功能,你们可以自己测试下 
40             ]; 
41     } 

 

在SiteController.php

 1   /**
 2      * @验证码独立操作  下面这个actions注意一点,验证码调试出来的样式也许你并不满意,这里就可
 3 以需修改,这些个参数对应的类是@app\vendor\yiisoft\yii2\captcha\CaptchaAction.php,可以参照这个
 4 类里的参数去修改,也可以直接修改这个类的默认参数,这样这里就不需要改了
 5      */
 6     public function actions()
 7     {        
 8         return  [    
 9 //                 'captcha' => 
10 //                    [
11 //                        'class' => 'yii\captcha\CaptchaAction',
12 //                        'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
13 //                    ],  //默认的写法
14                         'captcha' => [
15                                     'class' => 'yii\captcha\CaptchaAction',
16                                     'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
17                                     'backColor'=>0x000000,//背景颜色
18                                     'maxLength' => 6, //最大显示个数
19                                     'minLength' => 5,//最少显示个数
20                                     'padding' => 5,//间距
21                                     'height'=>40,//高度
22                                     'width' => 130,  //宽度  
23                                     'foreColor'=>0xffffff,     //字体颜色
24                                     'offset'=>4,        //设置字符偏移量 有效果
25                                     //'controller'=>'login',        //拥有这个动作的controller
26                             ],
27         ];
28     }
View Code

 

在signup.php
<?= $form->field($model, 'verifyCode')->widget(\yii\captcha\Captcha::className(),[
                    
                ]) ?>
 
<?php 
          $form = ActiveForm::begin([
                                  'id' => 'login-form',                                   
                                      ]); 
  ?>
<?php 
    echo Captcha::widget(['name'=>'captchaimg','captchaAction'=>'login/captcha','imageOptions'=>['id'=>'captchaimg', 'title'=>'换一个', 'alt'=>'换一个', 'style'=>'cursor:pointer;margin-left:25px;'],'template'=>'{image}']);//我这里写的跟官方的不一样,因为我这里加了一个参数(login/captcha),这个参数指向你当前控制器名,如果不加这句,就会找到默认的site控制器上去,验证码会一直出不来,在style里是可以写css代码的,可以调试样式 ?>
<?php 
ActiveForm::end(); 
?>

 

 
 
posted @ 2016-06-07 16:21  哦先生  阅读(3492)  评论(0编辑  收藏  举报