Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > php框架

Yii2下点击验证码的切换实例代码

来源:中文源码网    浏览:141 次    日期:2024-04-15 04:04:10
【下载文档:  Yii2下点击验证码的切换实例代码.txt 】


Yii2下点击验证码的切换实例代码
最近需要用到验证码,搜索了很多关于Yii2验证码的切换的介绍,下面我来记录一下,有需要了解Yii2下验证码的切换的朋友可参考。希望此文章对各位有所帮助。
模型代码如下:
namespace app\admin\models;
use yii;
use yii\base\model;
use yii\captcha\Captcha;
class LoginForm extends Model{
public $verifyCode;
public $password;
public $username;
public function rules(){
return [
['verifyCode','captcha','captchaAction'=>'/admin/login/captcha','message'=>'{attribute}'],
[['password','username'],'required'],
];
}
}
控制器代码如下:
namespace app\admin\controllers;
use Yii;
use yii\web\Controller;
use app\admin\models\LoginForm;
use yii\filters\AccessControl;
use yii\filters\VerbFilter;
use yii\captcha\CaptchaAction;
class LoginController extends Controller{
public function actions(){
return [
'captcha'=>'yii\captcha\CaptchaAction',
'maxLength'=>4,
'minLength'=>3,
'width'=>10,
'height'=>10
];
}
public function actionIndex(){
$log = new LoginForm();
return $this->renderPartial("index",['model'=>$log]);
}
//授权规则

视图代码如下:
use yii\helpers\Html;
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs;
use app\assets\AppAsset;
use yii\widgets\ActiveFiel;
use yii\widgets\ActiveForm;
use yii\captcha\Captcha;
use app\components\HelloWidget;
//url 创建
use yii\helpers\Url;
AppAsset::register($this);
?>
beginPage()?>



博客后台管理系统








beginBody()?>




beginBody()?>

endPage()?>
这里整个代码差不多了但是要设置一样更重要的 app/vendor/yiisoft/yii2/captcha/的文件下的CaptchaAction.php这文件中修改getVerifyCode($regenerate = false) 的方法$regenerate参数为true (getVerifyCode($regenerate = true))
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持中文源码网。

相关内容