0
検証中にyii2にヒントを表示できますか?私のモデルで は私が持っている:Yii2は検証のヒントを示します
public function rules()
{
return [
[['content'], 'checkLastCommentDate', 'skipOnEmpty' => false, 'skipOnError' => false],
];
}
public function checkLastCommentDate($attribute)
{
if (true) {
//can set hint here?
}
}
ありません。おそらく、それは妥当性検査ではありませんか? $ vat == 5の場合のみショーヒントをお願いします –