Gii 创建模型

Gii 创建模型

在Gii中创建模型的步骤如下 −

<?php
   namespace app\models;
   use app\components\UppercaseBehavior;
   use Yii;
   /**
   * This is the model class for table "user".
   *
   * @property integer id
   * @property stringname
   * @property string $email
   */
   class MyUser extends \yii\db\ActiveRecord {
      /**
      * @inheritdoc
      */
      public static function tableName() {
         return 'user';
      }
      /**
      * @inheritdoc
      */
      public function rules() {
         return [
            [['name', 'email'], 'string', 'max' => 255]
         ];
      }
      /**
      * @inheritdoc
      */
      public function attributeLabels() {
         return [
            'id' => 'ID',
            'name' => 'Name',
            'email' => 'Email',
         ];
      }
   }
?>

生成CRUD

让我们为MyUser模型生成CRUD。

步骤1 - 打开CRUD生成器界面,填写表单。

Gii 创建模型

步骤2 − 然后,点击“预览”按钮和“生成”。转到以下网址 http://localhost:8080/index.php?r=my-user ,您将看到所有用户的列表。

Gii 创建模型

步骤3 - 打开URL http://localhost:8080/index.php?r=my-user/create 。您应该看到一个用户创建表单。

Gii 创建模型

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程