>Whan 我在我的规则中添加"on"=>"创建"我的验证码总是不正确为什么呢?我尝试让它到其他控制器支持/验证码,但仍然不正确
我的视图
<?= 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)]
]); ?>
迈鲁尔
...
[['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,
];
我的控制器
public function actions()
{
return [
'error' => [
'class' => 'yiiwebErrorAction',
],
'captcha' => [
'class' => CaptchaAction::className(),
],
];
}
$customerServiceModel->load($post)
不起作用,因为在这种情况下不safe
属性verifyCode
。您的规则是用'on' => 'create'
指定的 - 这意味着,它保存在方案create
上。你未将此方案分配给模型,因此有 2 个解决方案:
- 从规则中删除
'on' => 'create'
- 在使用
load()
之前,通过$customerServiceModel->scenario = 'create';
将方案分配给模型create
。