Controller控制器层代码

<?php

namespace frontend\controllers;

use frontend\models\UserForm;
class UserController extends \yii\web\Controller
{
public function actionIndex()
{
$model = new UserForm;
if ($model->load(\Yii::$app->request->post()) && $model->validate())
{
echo "通过";
} return $this->render('index',[
"model" => $model,
]);
} }

VIEWS视图层代码

<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm; ?> <h1>YII2.0使用ActiveForm</h1> <?php $form = ActiveForm::begin([
'action' => ['log/login'], //提交地址(*可省略*)
'method'=>'post', //提交方法(*可省略默认POST*)
'id' => 'login-form', //设置ID属性
'options' => [
'class' => 'form-horizontal', //设置class属性
'enctype' => 'multipart/form-data' //文件上传时添加该编码
],
'fieldConfig' => [
'template' => '<div class="form-group"><center><label class="col-md-2 control-label" for="type-name-field">{label}</label></center><div class="col-md-8 controls">{input}{error}</div></div>'
], //设置模板的样式
]); ?> <!--文本框 (*验证长度可在这里写 maxlength 这样就不用再 model 里面写了 *)-->
<?= $form->field($model, 'username',['inputOptions' => ['placeholder'=>'请输入用户名','class' => 'ipt'],'template'=>'<div class="form-group"><div class="col-md-8 controls">{label}{input}{error}</div></div>'])->textInput(['maxlength' => 20,"style"=>"width:200px; height:30px;"]) ?> <!--密码框 (*不使用他的lable只需要用false把他禁止, 然后你可以自己写*)-->
<h4>密码</h4><?= $form->field($model, 'pwd')->label(false)->passwordInput(['maxlength' => 20,"style"=>"width:200px; height:30px;","placeholder"=>"请输入您的密码"]) ?> <?= $form->field($model, 're_pwd')->passwordInput(['maxlength' => 20,"style"=>"width:200px; height:30px;","placeholder"=>"请输入您的密码"]) ?> <!--单选按钮(*设置默认选中*)-->
<?php $model->sex=1; echo $form->field($model, 'sex')->radioList(['1'=>'男','0'=>'女']) ?> <!--验证邮箱-->
<?= $form->field($model, 'email')->textInput() ?> <!--下拉框的默认选中使用 prompt 设置 -->
<?= $form->field($model, 'school')->dropDownList(['1'=>'大学','2'=>'高中','3'=>'初中'], ['prompt'=>'请选择','style'=>'width:120px']) ?> <!--文件上传-->
<?= $form->field($model, 'photo')->fileInput() ?> <!--复选框 -->
<?= $form->field($model, 'hobby')->checkboxList(['0'=>'篮球','1'=>'足球','2'=>'羽毛球','3'=>'乒乓球']) ?> <!--文本域-->
<?= $form->field($model, 'remark')->textarea(['rows'=>3]) ?> <!--隐藏域-->
<?= $form->field($model, 'userid')->hiddenInput(['value'=>3])->label(false); ?> <?= Html::submitButton('提交', ['class'=>'btn btn-primary','name' =>'submit-button']) ?> <?= Html::resetButton('重置', ['class'=>'btn btn-primary','name' =>'submit-button']) ?> <?php ActiveForm::end(); ?>

MODELS层表单验证

<?php

namespace frontend\models;

use Yii;
class UserForm extends \yii\db\ActiveRecord
{
/**
*@param参数
*/
public $username;
public $pwd;
public $re_pwd;
public $email;
public $bobby;
public $remark;
public $photo;
public $school;
public $info; /**
* @inheritdoc
*/
public static function tableName()
{
return '{{%user}}';
} /**
* @inheritdoc
*/
public function rules()
{
return [
//验证不能为空
[['username', 'pwd', 'email', 'hobby'], 'required' ,"message"=>"{attribute}不能为空"], //验证用户唯一
['username', 'unique', 'targetClass' => '\frontend\models\User', 'message' => '用户名已存在.'], //验证密码不一致
['re_pwd', 'compare', 'compareAttribute' => 'pwd', 'message' => '两次密码不一致'], //验证字符串长度
[['username'],"string", "max"=>"10", "min"=>"5", "tooLong"=>"{attribute}不能大于10个字符", "tooShort"=>"{attribute}不能小于5个字符"], //验证文件上传的格式
['photo','file',
'extensions'=>['jpg','png','gif'],'wrongExtension'=>'只能上传{extensions}类型文件!',
'maxSize'=>1024*1024*2, 'tooBig'=>'文件上传过大!',
'skipOnEmpty'=>false,'uploadRequired'=>'请上传文件!',
'message'=>'上传失败!'
] //采用rules 规则验证
['email', 'email',"message"=>"{attribute}格式错误"],
//方法2:
//正则验证 ['tel','match','pattern'=>'/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})?$/','message'=>"{attribute}邮箱输入有误."], [['remark'], 'string', 'max' => 200], ];
} /**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'user_id' => '自增ID',
'username' => '用户名',
'pwd' => '密码',
're_pwd' => '请再次输入密码',
'sex' => '性别',
'photo' => '头像',
'email' => '邮箱',
'hobby' => '爱好',
'school' => '学校',
'remark' => '备注信息',
];
}
}

相关的学习网站推荐

http://www.phpxs.com/post/2327

http://www.phpxs.com/post/3441

http://www.phpxs.com/post/4378

http://www.phpxs.com/post/3443

http://www.kuitao8.com/20140425/2334.shtml

http://www.yiichina.com/tutorial/635

YII2.0使用ActiveForm表单的更多相关文章

  1. YII2.0使用ActiveForm表单(转)

    Controller控制器层代码 <?php namespace frontend\controllers; use frontend\models\UserForm; class UserCo ...

  2. yii2之ActiveForm表单使用

    因目前项目并非前后端分离模式,且用到PHP的yii2框架(所有html代码,js较多内嵌在.php文件内多少采用同步提交[喷墨中...]),遂对于前端面上需要用到的yii2小组件一些整理(因是前端若涉 ...

  3. yii2 创建ActiveForm(表单)

    表单的生成表单中的方法    ActiveForm::begin()方法    ActiveForm::end()方法    getClientOptions()方法    其它方法:errorSum ...

  4. yii中调整ActiveForm表单样式

    Yii2中对于表单和字段的支持组件为ActiveForm和ActiveField, <?php $form = ActiveForm::begin([ 'id' => 'login-for ...

  5. <玩转Django2.0>读书笔记:表单

    1. 表单字段 参考: 官方文档 Django表单字段汇总 2. 表单代码示例(forms.Form) # form.py代码 # 获取数据库数据 choices_list = [(i+1,v['ty ...

  6. 【Django笔记四】Django2.0中的表单

    一.环境版本信息: 操作系统:windows10 Django版本:2.0.5 Python版本:3.6.4 Mysql版本: 5.5.53   安装mysql 二.基础信息 1.App中的模型mod ...

  7. thinkPHP5.0使用form表单提交数据和删除文章,不用TP的提示页面,使用弹出提示信息

    form表单提交数据和删除文章时,TP的默认信息提示页面的看起来不是很好看,想要实现弹窗提示怎么做呢? 前端:可以使用前端的一个知识--iframe,iframe元素会创建包含另外一个文档的内联框架: ...

  8. yii2.0 Activeform表单部分组件使用方法

    文本框:textInput(); 密码框:passwordInput(); 单选框:radio(),radioList(); 复选框:checkbox(),checkboxList(); 下拉框:dr ...

  9. yii2.0 Activeform表单部分组件使用方法 [ 2.0 版本 ]

    文本框:textInput(); 密码框:passwordInput(); 单选框:radio(),radioList(); 复选框:checkbox(),checkboxList(); 下拉框:dr ...

  10. [moka同学笔记]yii2 activeForm 表单样式的修改(二)

    aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAABAEAAANXCAIAAADLkdErAAAgAElEQVR4nOzdfWwc953nef6zwO5Zg8

随机推荐

  1. 石子合并问题DP

    START: 2021-08-10 14:29:04 1.问题描述: 有N堆石子排成一排,每堆石子有一定的数量.现要将N堆石子并成为一堆.合并的过程只能每次将相邻的两堆石子堆成一堆,每次合并花费的代价 ...

  2. 图模导入原理之 SVG图形基础与图形导入

    一.svg图形基础 PMS图形中,图形svg文件内容一般由两部分组成: 1.<defs>标签中定义的是图元信息,即各种不同设备不同状态的图元应该如何显示: 2.各种<XXXXXX_L ...

  3. 什么是js柯里化(curry)?

    在数学和计算机科学中,柯里化是一种将使用多个参数的一个函数转换成一系列使用一个参数的函数的技术. 举例来说,一个接收3个参数的普通函数,在进行柯里化后,柯里化版本的函数接收一个参数并返回接收下一个参数 ...

  4. VBA中的结构体

    结构体必须放在"模块"中: Type Org tag As String person As New Collection End Type 使用: Sub testType() ...

  5. PHP 二维按照某个字段对数组排序

    function arraySort($arr, $keys, $type = 'asc') {//二维按照某个字段对数组排序 $keysvalue = $new_array = array(); f ...

  6. vue element表格合计问题

    vue element计算表格合计问题 问题:当表格的el-table-column标签下的属性prop属性值为'对象.属性'时,将不能自动合计.例如: <el-table border v-l ...

  7. pyecharts 学习使用网址

    pyecharts新版官方手册地址:https://pyecharts.org/#/zh-cn/intro 或http://pyecharts.org/#/?id=pyecharts或http://p ...

  8. egret 图片跨域

    //图片跨域 egret.ImageLoader.crossOrigin = "anonymous";

  9. pragma pack(字节对齐用法)---C语言

    #pragma pack(4) typedef struct { char buf[3]; word a; }kk; #pragma pack() 对齐的原则是min(sizeof(word ),4) ...

  10. k8sdeploy配置文件示例

    apiVersion: extensions/v1beta1 kind: Deployment metadata: name: [k8s服务名] namespace: default labels: ...