自定义ajax验证文本长度不起作用yii2

时间:2017-07-04 12:30:27

标签: yii2

我正在尝试检查输入文本的长度,但没有成功。它正在使用required规则,因为我收到the field is empty错误但未通过我的验证。我的自定义规则仅适用于表单提交。还尝试启用表单的ajax验证,但同样没有。

public function rules()
    {
        return [
            [['author_id', 'title', 'review'], 'required'],
            [['author_id'], 'integer'],
            [['review'], 'string'],
            [['review'], function($attribute, $params){
                if(strlen($this->$attribute) < 10){
                    $this->addError($attribute, 'The review is too short! Minimum 10 symbols!');
                }
            }],
            [['review'], 'trim'],
            [['dt'], 'safe'],
            [['title'], 'string', 'max' => 255],
            [['author_id'], 'exist', 'skipOnError' => true, 'targetClass' => User::className(), 'targetAttribute' => ['author_id' => 'id']],
            [['post_id'], 'exist', 'skipOnError' => true, 'targetClass' => News::className(), 'targetAttribute' => ['post_id' => 'id']],
        ];
    }

我的表格:

<?php $form=\yii\bootstrap\ActiveForm::begin([
                                'method' => 'post',
                                'options' => [
                                    'id' => 'textarea_' . $model->id . '',
                                    'class' => "textarea_review"
                                ],

                            ]) ?>

                            <input type="hidden" name="flag" value="1"/>
                            <input type="hidden" name="model_id" value="<?= $model->id ?>"/>
                            <?= $form->field($model, 'review')->textarea(['id'=>'update_text_'.$model->id.''])->label(false) ?>
                            <?= $form->field($model, 'csrf_token')->hiddenInput(['value' => $session['token']])->label(false) ?>

                            <?= Html::button('Изпрати', ['onclick'=>'editComment('.$model->id.')', 'class'=>'btn btn-primary send-button']) ?>
                            <?php \yii\bootstrap\ActiveForm::end() ?>

提前谢谢!

2 个答案:

答案 0 :(得分:1)

对于客户端验证,您还必须设置whenClient属性,以及进行javascript验证的位置。

此处为docs:Client Side Validation

答案 1 :(得分:1)

或许跳过内联验证器并按如下方式定义string规则是最佳解决方案:

[['review'], 'string', 'max' => 10, 'message' =>  'The review is too short! Minimum 10 symbols!']

如果您绝对需要自定义验证器,那么第二个最佳选择是 使用ajax验证。

如果上述两种情况都不适合你,那么你就不会只是编写php验证规则。 您需要提供客户端脚本以在浏览器中实现相同的验证逻辑。

定义自定义验证器类并覆盖clientValidateAttribute() 或者您可以将clientValidate属性指定给您在自定义规则中使用的内联验证器 通过文档阅读时,请务必遵循yii\validators\InlineValidatoryii\validators\Validator之间的区别