【发布时间】: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