我可以在验证期间在yii2中显示提示吗? 在我的模型中我有:
public function rules()
{
return [
[['content'], 'checkLastCommentDate', 'skipOnEmpty' => false, 'skipOnError' => false],
];
}
public function checkLastCommentDate($attribute)
{
if (true) {
//can set hint here?
}
}
答案 0 :(得分:0)
使用Model :: addError方法:
public function checkLastCommentDate($attribute)
{
if (true) {
$this->addError($attribute, 'Here is my hint');
}
}