博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Yii model rules使用
阅读量:5037 次
发布时间:2019-06-12

本文共 859 字,大约阅读时间需要 2 分钟。

今天使用model rules 里面的 on 发现死活不起作用,后来搜索发现 需要设置model 实例的 scenario 属性才能起作用,不知道为什么。

 

//控制器内	$model = new User(); $model->scenario = 'add';//模型内public function rules()	{		// NOTE: you should only define rules for those attributes that		// will receive user inputs.		return array(			array('username, password', 'required','message'=>'不能为空','on'=>'add'),			array('username, password, salt, email', 'length', 'max'=>128),			//array('profile', 'safe'),                        array('password_re','compare','compareAttribute'=>'password','message'=>'密码必须一致!','on'=>'add'),                        array('username','unique','message'=>'用户名已存在'),                        //array('addtime','default','value'=>time()),                        //array('verifyCode', 'captcha', 'allowEmpty'=>!CCaptcha::checkRequirements()),		);	}

  

转载于:https://www.cnblogs.com/yxbs/p/3614253.html

你可能感兴趣的文章
1.jstl c 标签实现判断功能
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
超详细的Guava RateLimiter限流原理解析
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
关于多路复用器的综合结果
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
spoj 345
查看>>
ios 设置屏幕方向的两种方法
查看>>
Java编程思想小笔记2
查看>>
正则表达式 之 常用实例
查看>>