Yii - Gii



Gii 是一个扩展,它提供了一个基于 Web 的代码生成器,用于生成模型、表单、模块、CRUD 等。

默认情况下,以下生成器可用:

  • 模型生成器 - 为指定的数据库表生成一个 ActiveRecord 类。

  • CRUD 生成器 - 生成一个控制器和视图,这些控制器和视图为指定的模型实现了 CRUD(创建、读取、更新、删除)操作。

  • 控制器生成器 - 生成一个新的控制器类,其中包含一个或多个控制器操作及其相应的视图。

  • 表单生成器 - 生成一个视图脚本文件,该文件显示一个表单以收集指定模型类的输入。

  • 模块生成器 - 生成 Yii 模块所需的骨架代码。

  • 扩展生成器 - 生成 Yii 扩展所需的文件。

要打开 gii 生成工具,请在 Web 浏览器的地址栏中输入 https://127.0.0.1:8080/index.php?r=gii:

Generation Tool

准备数据库

步骤 1 - 创建一个新的数据库。可以通过以下两种方式准备数据库:

  • 在终端运行 mysql -u root –p

  • 通过 CREATE DATABASE helloworld CHARACTER SET utf8 COLLATE utf8_general_ci; 创建一个新的数据库。

步骤 2 - 在 config/db.php 文件中配置数据库连接。以下配置适用于当前使用的系统。

<?php
   return [
      'class' => 'yii\db\Connection',
      'dsn' => 'mysql:host=localhost;dbname=helloworld',
      'username' => 'vladimir',
      'password' => '12345',
      'charset' => 'utf8',
   ];
?>

步骤 3 - 在根文件夹内 运行 ./yii migrate/create test_table。此命令将创建一个数据库迁移来管理我们的数据库。迁移文件应该出现在项目根目录的 migrations 文件夹中。

步骤 4 - 以这种方式修改迁移文件(在本例中为 m160106_163154_test_table.php)。

<?php
   use yii\db\Schema;
   use yii\db\Migration;
   class m160106_163154_test_table extends Migration {
      public function safeUp() {
         $this->createTable("user", [
            "id" => Schema::TYPE_PK,
            "name" => Schema::TYPE_STRING,
            "email" => Schema::TYPE_STRING,
         ]);
         $this->batchInsert("user", ["name", "email"], [
            ["User1", "[email protected]"],
            ["User2", "[email protected]"],
            ["User3", "[email protected]"],
            ["User4", "[email protected]"],
            ["User5", "[email protected]"],
            ["User6", "[email protected]"],
            ["User7", "[email protected]"],
            ["User8", "[email protected]"],
            ["User9", "[email protected]"],
            ["User10", "[email protected]"],
            ["User11", "[email protected]"],
         ]);
      }
      public function safeDown() {
         $this->dropTable('user');
      }
   }
?>

上述迁移创建了一个包含以下字段的 user 表:id、name 和 email。它还添加了一些演示用户。

步骤 5 - 在项目根目录内 运行 ./yii migrate 以将迁移应用到数据库。

步骤 6 - 现在,我们需要为我们的 user 表创建一个模型。为了简单起见,我们将使用 Gii 代码生成工具。打开此 url: https://127.0.0.1:8080/index.php?r=gii。然后,单击“模型生成器”标题下的“开始”按钮。填写表名(“user”)和模型类(“MyUser”),单击“预览”按钮,最后单击“生成”按钮。

Gii Preparing DB

MyUser 模型应该出现在 models 目录中。

广告