YII2.0使用ActiveForm表单(转)

时间:2023-03-08 17:18:26
YII2.0使用ActiveForm表单(转)

Controller控制器层代码

  1. <?php
  2. namespace frontend\controllers;
  3. use frontend\models\UserForm;
  4. class UserController extends \yii\web\Controller
  5. {
  6. public function actionIndex()
  7. {
  8. $model = new UserForm;
  9. if ($model->load(\Yii::$app->request->post()) && $model->validate())
  10. {
  11. echo "通过";
  12. }
  13. return $this->render('index',[
  14. "model" => $model,
  15. ]);
  16. }
  17. }

VIEWS视图层代码

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. ?>
  5. <h1>YII2.0使用ActiveForm</h1>
  6. <?php $form = ActiveForm::begin([
  7. 'action' => ['log/login'], //提交地址(*可省略*)
  8. 'method'=>'post',    //提交方法(*可省略默认POST*)
  9. 'id' => 'login-form', //设置ID属性
  10. 'options' => [
  11. 'class' => 'form-horizontal', //设置class属性
  12. 'enctype' => 'multipart/form-data' //文件上传时添加该编码
  13. ],
  14. 'fieldConfig' => [
  15. '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>'
  16. ],  //设置模板的样式
  17. ]); ?>
  18. <!--文本框 (*验证长度可在这里写 maxlength 这样就不用再 model 里面写了 *)-->
  19. <?= $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;"]) ?>
  20. <!--密码框 (*不使用他的lable只需要用false把他禁止, 然后你可以自己写*)-->
  21. <h4>密码</h4><?= $form->field($model, 'pwd')->label(false)->passwordInput(['maxlength' => 20,"style"=>"width:200px; height:30px;","placeholder"=>"请输入您的密码"]) ?>
  22. <?= $form->field($model, 're_pwd')->passwordInput(['maxlength' => 20,"style"=>"width:200px; height:30px;","placeholder"=>"请输入您的密码"]) ?>
  23. <!--单选按钮(*设置默认选中*)-->
  24. <?php $model->sex=1; echo $form->field($model, 'sex')->radioList(['1'=>'男','0'=>'女']) ?>
  25. <!--验证邮箱-->
  26. <?= $form->field($model, 'email')->textInput() ?>
  27. <!--下拉框的默认选中使用 prompt 设置 -->
  28. <?= $form->field($model, 'school')->dropDownList(['1'=>'大学','2'=>'高中','3'=>'初中'], ['prompt'=>'请选择','style'=>'width:120px']) ?>
  29. <!--文件上传-->
  30. <?= $form->field($model, 'photo')->fileInput() ?>
  31. <!--复选框 -->
  32. <?= $form->field($model, 'hobby')->checkboxList(['0'=>'篮球','1'=>'足球','2'=>'羽毛球','3'=>'乒乓球']) ?>
  33. <!--文本域-->
  34. <?= $form->field($model, 'remark')->textarea(['rows'=>3]) ?>
  35. <!--隐藏域-->
  36. <?= $form->field($model, 'userid')->hiddenInput(['value'=>3])->label(false); ?>
  37. <?= Html::submitButton('提交', ['class'=>'btn btn-primary','name' =>'submit-button']) ?>
  38. <?= Html::resetButton('重置', ['class'=>'btn btn-primary','name' =>'submit-button']) ?>
  39. <?php ActiveForm::end(); ?>

MODELS层表单验证

  1. <?php
  2. namespace frontend\models;
  3. use Yii;
  4. class UserForm extends \yii\db\ActiveRecord
  5. {
  6. /**
  7. *@param参数
  8. */
  9. public $username;
  10. public $pwd;
  11. public $re_pwd;
  12. public $email;
  13. public $bobby;
  14. public $remark;
  15. public $photo;
  16. public $school;
  17. public $info;
  18. /**
  19. * @inheritdoc
  20. */
  21. public static function tableName()
  22. {
  23. return '{{%user}}';
  24. }
  25. /**
  26. * @inheritdoc
  27. */
  28. public function rules()
  29. {
  30. return [
  31. //验证不能为空
  32. [['username', 'pwd', 'email', 'hobby'], 'required' ,"message"=>"{attribute}不能为空"],
  33. //验证用户唯一
  34. ['username', 'unique', 'targetClass' => '\frontend\models\User', 'message' => '用户名已存在.'],
  35. //验证密码不一致
  36. ['re_pwd', 'compare', 'compareAttribute' => 'pwd', 'message' => '两次密码不一致'],
  37. //验证字符串长度
  38. [['username'],"string", "max"=>"10", "min"=>"5", "tooLong"=>"{attribute}不能大于10个字符", "tooShort"=>"{attribute}不能小于5个字符"],
  39. //验证文件上传的格式
  40. ['photo','file',
  41. 'extensions'=>['jpg','png','gif'],'wrongExtension'=>'只能上传{extensions}类型文件!',
  42. 'maxSize'=>1024*1024*2,  'tooBig'=>'文件上传过大!',
  43. 'skipOnEmpty'=>false,'uploadRequired'=>'请上传文件!',
  44. 'message'=>'上传失败!'
  45. ]
  46. //采用rules 规则验证
  47. ['email', 'email',"message"=>"{attribute}格式错误"],
  48. //方法2:
  49. //正则验证  ['tel','match','pattern'=>'/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})?$/','message'=>"{attribute}邮箱输入有误."],
  50. [['remark'], 'string', 'max' => 200],
  51. ];
  52. }
  53. /**
  54. * @inheritdoc
  55. */
  56. public function attributeLabels()
  57. {
  58. return [
  59. 'user_id' => '自增ID',
  60. 'username' => '用户名',
  61. 'pwd' => '密码',
  62. 're_pwd' => '请再次输入密码',
  63. 'sex' => '性别',
  64. 'photo' => '头像',
  65. 'email' => '邮箱',
  66. 'hobby' => '爱好',
  67. 'school' => '学校',
  68. 'remark' => '备注信息',
  69. ];
  70. }
  71. }