请问 rules 规则中的 message 如何引用当前的标签? [ 2.0 版本 ]
比如定义好几个字段都不允许为空,错误提示为:字段名+错误提示,怎么写message语句;就是保证错误信息自动调用当前的attributeLabes的标签!
类似以下写法
public function rules()
{
return [
[['title', 'image', 'content'], 'required','message'=>"{{$attribute}}不能为空"],
[['content'], 'string'],
[['title', 'image'], 'string', 'max' => 225]
];
}
zfeig 补充于 2014-12-22 20:16
{
return [
[['title', 'image', 'content'], 'required','message'=>"{attribute}不能为空"],
[['content'], 'string'],
[['title', 'image'], 'string', 'max' => 225]
];
}
最佳答案
其他 0 个回答
没有找到数据。
zfeig
注册时间:2014-07-29
最后登录:2015-09-29
在线时长:36小时6分
最后登录:2015-09-29
在线时长:36小时6分
- 粉丝55
- 金钱75
- 威望30
- 积分735