【问题标题】:Yii2 show hint on validationYii2 显示验证提示
【发布时间】:2017-02-14 13:28:23
【问题描述】:

我可以在验证期间在 yii2 中显示提示吗? 在我的模型中,我有:

    public function rules()
        {
            return [
                [['content'], 'checkLastCommentDate', 'skipOnEmpty' => false, 'skipOnError' => false],
            ];
        }

   public function checkLastCommentDate($attribute)
    {
        if (true) {
           //can set hint here?
        }
    }

【问题讨论】:

    标签: validation yii2 hint


    【解决方案1】:

    使用 Model::addError 方法:

    public function checkLastCommentDate($attribute)
    {
        if (true) {
            $this->addError($attribute, 'Here is my hint');
        }
    }
    

    【讨论】:

    • 不,yii2 有类似提示的东西,但我不能在验证中使用它。也许它不应该在验证中?我只想在 $vat == 5 时显示提示
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-12-20
    • 1970-01-01
    • 2018-06-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多