-
控制器代码
public function actionCreate() { $model = new News(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->news_id]); } else { return $this->render('create', [ 'model' => $model, ]); } }
- view里create.php表单代码:
<?= $this->render('_form', [ 'model' => $model, ]) ?>
- *表单效果:
请问上图中文字ID和添加时间怎么去掉呢,状态怎么把文本框修改成单选框?
有form.php,去那个里边修改表单。
http://blog.csdn.net/q 31648761/article/details/64122138
常用表单样式框,
这简直就是送分题 @pmd
这么简单。
直接删除掉就好啊,或者隐藏起来