我创建了一个描述框,最多可容纳10个字符我的验证规则如下所示
['description', 'string' , 'max' => 10 ,'message' => 'You have entered more characters than allowed.']
我该如何解决?
使用string验证器时,您可以为消息配置以下内容
message
:当值不是字符串时使用的错误消息。tooLong
:值的长度大于$max
时使用的错误消息。tooShort
:值的长度小于$min
时使用的错误消息。[您需要在使用tooLong
属性时使用max
,并且您也可以在消息内使用令牌{max}
来解析消息的最大限制。
[
['description'],
'string' ,
'max' => 10 ,
'tooLong' => 'You have entered more characters than allowed {max}.'
]