Yii2验证时显示提示
问题描述:
验证期间,我可以在yii2中显示提示吗? 在我的模型,我有:Yii2验证时显示提示
public function rules()
{
return [
[['content'], 'checkLastCommentDate', 'skipOnEmpty' => false, 'skipOnError' => false],
];
}
public function checkLastCommentDate($attribute)
{
if (true) {
//can set hint here?
}
}
答
使用型号:: addError方法:
public function checkLastCommentDate($attribute)
{
if (true) {
$this->addError($attribute, 'Here is my hint');
}
}
没有,yii2有类似的提示,但我不能确认使用它。也许它不应该在验证?我只想显示提示$ vat == 5 –