yii2 后台验证验证码 [ 2.0 版本 ]
整合了smarty3,想过这种(当然不行的
function init() {
parent::init();
$this->captobj = new CaptchaAction(yii::$app->controller->id, $this);
$this->_params['captcha_session_code'] = $this->captobj->getVerifyCode();
}
这种可以,不过id随便取似乎不太好。。。
function init() {
parent::init();
$this->captobj = new CaptchaAction(1111, $this);
$this->_params['captcha_session_code'] = $this->captobj->getVerifyCode();
}
最佳答案
-
试试这样写:
$this->captobj = new CaptchaAction(yii::$app->controller->getUniqueId(), $this);
共 3 条回复kestrel 觉得很赞
其他 0 个回答
没有找到数据。
kestrel
注册时间:2015-05-22
最后登录:2021-11-20
在线时长:3小时12分
最后登录:2021-11-20
在线时长:3小时12分
- 粉丝1
- 金钱55
- 威望10
- 积分185