表單整體輸出樣式
<?php
$form = activeform::begin([
'options' => ['enctype' => 'multipart/form-data', 'class' => 'form-horizontal'],
'method' => 'post',
]);$template = ['template' => "\n
\n"];
$colclass = ['class' => 'col-sm-3 control-label no-padding-right'];
?>
文字框:textinput
<?= $form->field($model, 'name', $template)
->textinput(['maxlength' => true, 'value'=>'123', 'name'=>'user_name'])
->label('姓名', $colclass);
?>
下拉框:dropdownlist
<?php
$member_model->member_identity = $value['member_identity'] ;//預設選中的值?>
<?= $form->field($member_model, 'member_identity', $template)
->dropdownlist(['1'=>"群主",'2'=>"代表"],['name'=>'member_identity'])
->label('身份', $colclass)
?>
多選框:checkboxlist
<?php
$model->id = $ids ;?>
<?= $form->field($model, 'id', $template)
->checkboxlist($tags,['name'=>'id'])
->label('標籤', $colclass)
?>
單選框:checkbox
<?= $form->field($model, 'username')->checkbox(,false)->label('已審核') ?> ?>
隱藏框
<?= $form->field($model, 'username')->hiddeninput(['1']) ?>
多行文字 :
<?= $form->field($model, 'username')->textarea() ?>
<?= $form->field($model, 'username')->input('email') ?>
密碼:
<?= $form->field($model, 'password')->passwordinput() ?>
單選列表:
<?= $form->field($model, 'username')->radiolist(['a' => '單選a', 'b' => '單選b', 'c' => '單選c']) ?>
yii2 常用元件 表單
簡介 yii2中最常用的元件activeform,通過對activeform的靈活運用,能有效的提公升開發效率,所以這個是不得不說的乙個yii2元件,那麼下面就來了解一下yii2.0的activeform的具體用法 用法 form signup 文字框的標題 field model,test1 la...
yii2常用的migrate命令
開發中經常會用到的方法小結 yii migrate create 表名 1 yii migrate xx 在表中插入某欄位 public function up 修改表中某欄位 public function up 增加索引 public function up 建立資料表 public funct...
yii2框架 yii2自身的自動載入 三
上一節說完了composer的自動載入,下面我們來說一下yii2自身的自動載入。在我們的入口檔案,例如index.php,如下 comment out the following two lines when deployed to production defined yii debug or d...