コード例 #1
0
 public function actionCreate()
 {
     $model = new Field();
     if ($model->load(yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['update', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }