好久没有回顾yii2了,现在回想,已经不记得原来是怎么做的了,现在写在这里,也不怕忘了
首先,我们得创建一个模型,根据官网
先将通读一下,不然很多都不知道为什么 ,简单完整的模型
namespace app\models;use yii\base\Model;class EntryForm extends Model{ public $name; public $email; public function rules(){ return[ [[‘name‘,‘email‘],‘required‘], [‘email‘,‘email‘], ]; }}
控制器中要先引入model :
use app\models\EntryForm
public function actionIndex() { $model=new EntryForm(); return $this->render(‘index‘,[ ‘model‘=>$model ]); }
view里面
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; ?> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, ‘name‘) ?> <?= $form->field($model, ‘email‘) ?> <?= Html::submitButton(‘Login‘) ?> <?php ActiveForm::end(); ?>
运行
如果不想用yii2.0自带的样式 两种方式:
在控制器中加上 public $layout=false; 或者将 $this->render换成 $this->renderPartial
总结
多看官网文档,多看,
时间: 2024-10-06 15:03:19