|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
YII2 rules小备注:
- public function rules()
- {
- return [
- [['title', 'image', 'content'], 'required','message'=>"{attribute}不能为空"],
- [['email'], 'unique','message'=>'{attribute}"{value}"已经被占用了'],
- [['title', 'image'], 'string', 'max' => 225]
- ];
- }
复制代码
其中 {attribute} 是属性名称, {value} 是用户输入的值 |
|