Yii - 排序



在显示大量数据时,我们经常需要对数据进行排序。Yii 使用一个yii\data\Sort 对象来表示排序方案。

要展示排序的实际操作,我们需要数据。

准备数据库

步骤 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。然后,点击“Model generator”标题下的“Start”按钮。填写表名(“user”)和模型类(“MyUser”),点击“Preview”按钮,最后点击“Generate”按钮。

Preparing DB

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

排序实战

步骤 1 - 向SiteController添加一个actionSorting方法。

public function actionSorting() {
   //declaring the sort object
   $sort = new Sort([
      'attributes' => ['id', 'name', 'email'], 
   ]);
   //retrieving all users
   $models = MyUser::find()
      ->orderBy($sort->orders)
      ->all();
   return $this->render('sorting', [
      'models' => $models,
      'sort' => $sort,
   ]);
}

步骤 2 - 在 views/site 文件夹内创建一个名为sorting视图文件。

<?php
   // display links leading to sort actions
   echo $sort->link('id') . ' | ' . $sort->link('name') . ' | ' . $sort->link('email');
?><br/>
<?php foreach ($models as $model): ?>
   <?= $model->id; ?>
   <?= $model->name; ?>
   <?= $model->email; ?>
   <br/>
<?php endforeach; ?>

步骤 3 - 现在,如果您在 Web 浏览器中输入https://127.0.0.1:8080/index.php?r=site/sorting,您会看到 id、name 和 email 字段是可排序的,如下面的图片所示。

Sorting Action
广告