Yii2显示验证提示

时间:2017-02-14 13:28:24

标签: validation yii2 hint

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

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

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

1 个答案:

答案 0 :(得分:0)

使用Model :: addError方法:

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