我添加'on'=>在我的规则中“创建”我的验证码始终不正确 关闭那项工作好为什么? 我试着让它到其他控制器支持/验证码,但仍然不正确
MyView的
<?= Captcha::widget([
'id' => 'captcha',
'model' => $model,
'attribute' => 'verifyCode',
'options' => ['class' => 'form-control',
'data-v-rule' => '',
'captchaAction' => 'support/captcha',
'data-v-msg' => $i18n->t('please.input.verify.code'),
'placeholder' => $i18n->t('please.input.verify.code', '', false)]
]); ?>
MyRule的
...
[['verifyCode'], 'captcha', 'message' => $i18n->t('error.verifyCode'),'captchaAction' => 'support/captcha' , 'on' => 'create'],
...
我得到了想法
$_SESSION = [
'__flash' => [],
'__captcha/site/captcha' => 'nnbioo',
'__captcha/site/captchacount' => 1,
'__captcha/support/captcha' => 'cacijq',
'__captcha/support/captchacount' => 1,
];
myController的
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
'captcha' => [
'class' => CaptchaAction::className(),
],
];
}
答案 0 :(得分:0)
unicode
无效,因为在这种情况下,属性$customerServiceModel->load($post)
不是verifyCode
。您的规则是使用safe
指定的 - 这意味着,它会保存在方案'on' => 'create'
中。您没有将此方案分配给模型,因此有2个解决方案:
create
'on' => 'create'
之前,将create
方案分配给$customerServiceModel->scenario = 'create';
进行建模。