首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Web开发
> 详细
php--yii框架表单验证
时间:
2016-03-31 14:43:08
阅读:
308
评论:
0
收藏:
0
[点我收藏+]
标签:
在视图层利用表单小部件生成表单时,field只能是数据库中存在的, 例如:use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\captcha\Captcha;
‘sign-form‘, ‘options‘=>[‘action‘=>‘usermessage/signform‘, ‘method‘=>‘post‘, ‘enctype‘=>‘multipart/form-data‘]]); ?> = $form->field($model, ‘username‘) ?> = $form->field($model, ‘password‘)->passwordInput() ?> = $form->field($model, ‘repassword‘)->passwordInput() ?> = $form->field($model, ‘age‘) ?> = $form->field($model, ‘sex‘) ?> = $form->field($model, ‘phone‘) ?> = $form->field($model, ‘captcha‘)->widget(Captcha::className(), [‘captchaAction‘=>‘usermessage/captcha‘, ‘template‘ => ‘
{image}
{input}
‘, ]) ?> = $form->field($model, ‘email‘) ?> = $form->field($model, ‘userimg‘)->fileInput() ?>
= Html::submitButton(‘Submit‘, [‘class‘ => ‘btn btn-primary‘]) ?>
其中,确认密码和验证码等字段我们是不需要在数据库中设计的,这时,需要在模型层定义相应的属性: public $repassword; public $userimg; public $captcha; public $phone; 在模型层定义验证规则rules: public function rules() { return [ [[‘username‘, ‘password‘, ‘repassword‘, ‘captcha‘, ‘age‘, ‘sex‘, ‘phone‘,‘email‘], ‘filter‘, ‘filter‘=>‘trim‘, ‘on‘=>‘register‘], [[‘username‘, ‘password‘, ‘repassword‘, ‘captcha‘, ‘age‘, ‘sex‘, ‘phone‘,‘email‘], ‘required‘, ‘message‘=>‘{attribute}不能为空‘], [[‘username‘], ‘match‘, ‘pattern‘=>‘/^\w{6,20}$/‘, ‘message‘=>‘{attribute}为6-20位数字字母或下划线‘], //[‘username‘, ‘unique‘, ‘targetClass‘ => ‘\common\models\User‘, ‘message‘ => ‘This username has already been taken.‘], //[[‘age‘], ‘number‘, ‘integerOnly‘=>true, ‘max‘=>150, ‘min‘=>18, ‘tooBig‘=>‘{attribute}只能是18-150以内整数‘, ‘tooSmall‘=>‘{attribute}只能是18-150以内整数‘], [[‘password‘], ‘match‘, ‘pattern‘=>‘/^[a-z_]\w{5,19}$/‘, ‘message‘=>‘{attribute}为6-20位数字字母或下划线,不能以数字开头‘], [‘repassword‘, ‘compare‘, ‘compareAttribute‘=>‘password‘, ‘message‘=>‘两次输入密码不一致‘], [‘sex‘, ‘in‘, ‘range‘=>[‘男‘, ‘女‘], ‘message‘=>‘{attribute}只能是男或女‘], [[‘phone‘], ‘match‘, ‘pattern‘=>‘/^(13|15|18)[0-9]{9}$/‘, ‘message‘=>"{attribute}只能是13,15,18开头的11位数字"], //[‘phone‘, ‘checkPhone‘], [[‘email‘, ‘userimg‘], ‘string‘, ‘max‘ => 50], [‘email‘, ‘email‘], //[‘email‘, ‘unique‘], [‘userimg‘, ‘file‘, ‘skipOnEmpty‘=>false, ‘extensions‘=>‘png,jpg,gif‘], [‘captcha‘, ‘captcha‘, ‘message‘=>‘请输入正确地{attribute}‘,‘captchaAction‘=>‘usermessage/captcha‘], ]; } 解析: Filter: 过滤,‘filter‘=>‘trim‘,表示去空格 Required:必须的,表示不能为空 Match: 匹配正则,需要和pattern一起使用,定义正则表达式,‘pattern‘=>‘/^\w{6,20}$/‘, Unique:验证数据唯一性,在注册时用到的比较多,这里需要注意的是,在rules规则里面定义的唯一性验证,只有在服务器端才能验证,如果想要在表单页面显示,需要开启”enableAjaxValidation”=>ture; 例如: ‘sign-form‘, //‘enableAjaxValidation‘ => true,//启用ajax验证,将属性值发送到服务器端进行验证并返回结果,默认为false ‘enableClientValidation‘ => true,//启用客户端验证,默认值为true,关闭后表单无js验证 ‘options‘=>[‘action‘=>‘usermessage/signform‘, ‘method‘=>‘post‘, ‘enctype‘=>‘multipart/form-data‘]]); ?> 这里需要注意的是,在这里启用的话,ajax验证是作用于所有的属性的,所以,还有另一种开启方式,在某一个field里面开启:= $form->field($model, ‘username‘, [‘enableAjaxValidation‘=>true])->textInput() ?>,这样就单独作用于username属性了。 要想实现表单ajax验证唯一性,后台还要一个ajax判断: $model->load(Yii::$app->request->post()); if (Yii::$app->request->isAjax) { Yii::$app->response->format = \yii\web\Response::FORMAT_JSON; return \yii\bootstrap\ActiveForm::validate($model); } 在有数据提交时,最好先执行$model->load(Yii::$app->request->post()); 操作,不要做多余的处理,然后判断ajax,否则ajax验证的时候可能会报错500。如果有验证码,这里就会有另一个问题:return \yii\bootstrap\ActiveForm::validate($model);这个验证的是所有的属性,而验证码执行validate后就会重新生成,那么在表单提交时我们进行数据有效性验证时就会报错,解决方式:\yii\bootstrap\ActiveForm::validate()这个方法其实是有两个参数的,$model,$attributes,我们可以指定ajax验证某一些特定的属性,写法是:\yii\bootstrap\ActiveForm::validate($model, [‘username‘, ‘email‘, ‘phone‘]);这样ajax验证时就只验证username,email,phone这三个字段了,不会影响验证码。 Number:数字验证,加上‘integerOnly‘=>true,表示只能是整数,max,min分别表示最大最小值,tooBig和tooSmall分别是超过最大值和低于最小值时的错误提示信息 Compare:比较,用于两个属性之间的比较,‘compareAttribute‘=>‘password‘,表示与password比较 In:和range连用,定义范围,表示属性值必须在这个范围内,通常用于验证某些固定值 Email:邮箱验证 File:文件验证 extensions可以定义上传文件的类型 Captcha:验证码验证,需要定义生成验证码的方法,‘captchaAction‘=>‘usermessage/captcha‘,usermessage表示控制器名,captcha表示方法名 可以在控制器层定义一个actions方法添加captcha方法: /** * 生成验证码的方法 */ public function actions() { parent::actions(); return [ ‘captcha‘ => [ ‘class‘ => ‘yii\captcha\CaptchaAction‘, //‘fixedVerifyCode‘ => YII_ENV_TEST ? ‘testme‘ : null, ‘maxLength‘ => 3, ‘minLength‘ => 3 ], ]; } 每一个验证都可以添加应用场景:’on’=>’register’; 在控制器层实例化模型层 $model = new Usermessage(); $model->setScenario(‘register‘); 定义使用应用场景为register 在模型层需要定义场景作用的对象 /** * 定义验证场景 */ public function scenarios() { return [ ‘register‘ => [‘username‘, ‘password‘, ‘repassword‘, ‘age‘, ‘sex‘, ‘phone‘,‘email‘], ‘login‘ => [‘username‘, ‘password‘,‘age‘, ‘sex‘, ‘phone‘,‘email‘], ]; } 然后在对应的验证规则后面限定应用场景’on’=>’register’; 当表单验证时,为在作用场景以内的参数可以不受验证规则的限制 添加入库:复选框因提交过来后是一个数组,所以在执行save()前需要将复选框的值处理成字符串
php--yii框架表单验证
标签:
原文地址:http://www.cnblogs.com/bjfy/p/5340892.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
36.VUE — 认识 Webpack 和 安装
2021-07-28
【PHP】上传图片翻转问题
2021-07-28
php对数字进行万。亿的转化
2021-07-28
五个 .NET 性能小贴士
2021-07-28
Three.js中显示坐标轴、平面、球体、四方体
2021-07-28
.net 5+ 知新:【1】 .Net 5 基本概念和开发环境搭建
2021-07-27
1.html,css
2021-07-27
基于Docker搭建 Php-fpm + Nginx 环境
2021-07-27
nginx + http + svn
2021-07-27
kubernets kube-proxy的代理 iptables和ipvs
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!