Yii2在modules中添加驗證碼的方法

來源:互聯網
上載者:User
最近玩了下Yii2的驗證碼部分,正常的邏輯都可以走通的,網上的例子也是沒有問題的,關鍵有問題的部分是在module中使用的時候,分享給大家,往下看之前可以去看看正常情況下是如何使用的。本文主要和大家介紹了Yii2 如何在modules中添加驗證碼的方法,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧,希望能協助到大家。

controller部分的代碼,這裡的跟網上的都類似


public function actions(){  return [    'captcha' => [      'class' => 'yii\captcha\CaptchaAction',      'fixedVerifyCode' => null,      'backColor' => 0x000000, //背景顏色      'maxLength' => 6, //最大顯示個數      'minLength' => 5, //最少顯示個數      'padding' => 5, //間距      'height' => 40, //高度      'width' => 130, //寬度      'foreColor' => 0xffffff, //字型顏色      'offset' => 4, //設定字元位移量 有效果    ],  ];}

model 部分的代碼【這裡是需要注意的】


public function rules(){  return [    ['username', 'required', 'message' => '登入帳號不可為空'],    ['password', 'required', 'message' => '登入密碼不可為空'],    ['verifyCode', 'required', 'message' => '驗證碼不可為空'],    ['verifyCode', 'captcha', 'captchaAction' => 'admin/default/captcha', 'message' => '驗證碼輸入錯誤'],    ['rememberMe', 'boolean'],    ['password', 'validatePassword'],  ];}

rules中的verifyCode,需要加一個captchaAction對應的值,不然會出現驗證碼驗證不通過,而且驗證碼的的數字也不會變化,原因應該是預設使用了site/captcha導致的

view部分的代碼【由於php跟html的混排導致我無法忍受頁面樣式的混亂排版,所以盡量將參數配置部分拿出來】


$captchaConfig = [  'name' => 'captchaimg',  'captchaAction' => ['/admin/default/captcha'],  'template' => '<p class="form-group"><p>{image}</p></p>',  'imageOptions' => [    'id' => 'captchaimg',    'title' => '換一個',    'alt' => '換一個',    'style' => 'cursor:pointer;margin-left:25px;',  ],];


<?=Captcha::widget($captchaConfig);?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.