Yii2 ActiveForm 简单应用

来源:互联网 发布:ae软件 三角形面板 编辑:程序博客网 时间:2024/05/20 20:58
  1. 文本框:textInput();
  2. 密码框:passwordInput();
  3. 单选框:radio(),radioList();
  4. 复选框:checkbox(),checkboxList();
  5. 下拉框:dropDownList();
  6. 隐藏域:hiddenInput();
  7. 文本域:textarea([‘rows’=>3]);
  8. 文件上传:fileInput();
  9. 重置按钮:resetButtun();
use yii\widgets\ActiveForm;use yii\helpers\Url;<?php $form = ActiveForm::begin([        'method' => 'post',         'action' => Url::toRoute(['creat']),        'options' => [              'class' => 'form-horizontal', // 设置form表单class属性            'enctype' => 'multipart/form-data' //文件上传时添加该编码          ],          'fieldConfig' => [ // 设置模板的样式              'template' => "{label}\n<div class='col-sm-11' style='margin-bottom:20px;'>{input}</div>\n",            'labelOptions' => [ // 修改label的样式                'class' => 'col-sm-1 control-label no-padding-right',                 'style' => 'padding-left:initial;padding-top:5px;'            ]        ]]); ?><? echo $form->field($model, 'username')->textInput(['maxlength' => 20]) ?><? echo $form->field($model, 'password')->passwordInput(['maxlength' => 20]) ?><? echo $form->field($model, 'sex')->radioList(['1'=>'男','0'=>'女']) ?><? echo $form->field($model, 'edu')->dropDownList(['1'=>'大学','2'=>'高中','3'=>'初中'], ['prompt'=>'请选择','style'=>'width:120px']) ?><? echo $form->field($model, 'file')->fileInput() ?><? echo $form->field($model, 'hobby')->checkboxList(['0'=>'篮球','1'=>'足球','2'=>'羽毛球','3'=>'乒乓球']) ?><? echo $form->field($model, 'info')->textarea(['rows'=>3]) ?><? echo $form->field($model, 'userid')->hiddenInput(['value'=>3]) ?><? echo Html::submitButton('提交', ['class'=>'btn btn-primary','name' =>'submit-button']) ?><? echo Html::resetButton('重置', ['class'=>'btn btn-primary','name' =>'submit-button']) ?><?php ActiveForm::end(); ?>  
原创粉丝点击