比如定义好几个字段都不允许为空,错误提示为:字段名+错误提示,怎么写message语句;就是保证错误信息自动调用当前的attributeLabes的标签!
类似以下写法
public function rules()
{
return [
[['title', 'image', 'content'], 'required','message'=>"{{$attribute}}不能为空"],
[['content'], 'string'],
[['title', 'image'], 'string', 'max' => 225]
];
}
其中{attribute}
是属性名称,{value}
是用户输入的值