当前位置:首页 > CMS教程 > 其它CMS > 列表

laravel7学习之无限级分类的最新实现方法

发布:smiling 来源: PHP粉丝网  添加日期:2022-03-28 11:46:23 浏览: 评论:0 

这篇文章主要给大家介绍了关于laravel7学习之无限级分类的最新实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。

写在前面的话

无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下。

laravel7学习之无限级分类的最新实现方法

创建模型控制器数据迁移文件

这里直接使用artisan命令进行创建

# -a 其实就是all,创建包含模型,控制器(资源),数据迁移文件(工厂模型、seed)

php artisan make:model -a Category

运行这条命令,就可以创建好资源控制器。

laravel7学习之无限级分类的最新实现方法

修改数据迁移文件

首先修改数据迁移文件xxx_create_categories_table.

打开文件,修改里面的up方法,添加相应字段。

  1. Schema::create('categories'function (Blueprint $table) { 
  2.    $table->id(); 
  3.    $table->string('title', 100)->comment('分类名称'); 
  4.    $table->string('name', 100)->comment('分类标识'); 
  5.    $table->string('description', 255)->nullable()->comment('分类描述'); 
  6.    $table->integer('pid')->default(0)->comment('分类id'); 
  7.    $table->integer('level')->default(1)->comment('分类层级'); 
  8.    $table->integer('sort')->default(0)->comment('排序'); 
  9.    $table->integer('status')->default(1)->comment('状态:0-禁用,1-正常'); 
  10.    $table->timestamps(); 
  11.   }); 

laravel7学习之无限级分类的最新实现方法

执行迁移命令

php artisan migrate

嵌套模型实现读取

  1. //App\Models\Category.php 
  2.    
  3. public function categories() 
  4.  { 
  5.   return $this->hasMany(self::class'pid''id')->with('categories'); 
  6.  } 

控制器调用

  1. //app\Http\controllers\CategooryController.php 
  2. use模型 
  3. use App\Models\Category; 
  4.    
  5. public function index() 
  6.  { 
  7.   $categories = Category::with('categories')->where('pid', 0)->get(); 
  8.   return view('category.index', compact('categories')); 
  9.  } 

添加路由

在 routes/web.php,我们添加以下内容:

Route::get('category', 'CategoryController@index');

blade模版渲染

这里使用递归渲染。

在 resources/views/categories.blade.php 文件:

  1. <table class="table table-borderless table-data3"
  2.   <thead> 
  3.    <tr> 
  4.     <th>编号</th> 
  5.     <th>分类名称</th> 
  6.     <th>分类标识</th> 
  7.     <th>分类描述</th> 
  8.     <th>创建时间</th> 
  9.     <th>状态</th> 
  10.     <th>操作</th> 
  11.    </tr> 
  12.   </thead> 
  13.   <tbody> 
  14.    @foreach ($categories as $category
  15.    <tr class="tr-shadow"
  16.     <td>{{ $category->id }}</td> 
  17.     <td>{{ $category->title }}</td> 
  18.     <td> 
  19.      <span class="block-email">{{ $category->name }}</span> 
  20.     </td> 
  21.     <td class="desc">{{ $category->description }}</td> 
  22.     <td>{{ $category->created_at }}</td> 
  23.     <td> 
  24.      <span class="status--process">{{ $category->status }}</span> 
  25.     </td> 
  26.     <td></td> 
  27.    </tr> 
  28.    <tr class="spacer"></tr> 
  29.    @foreach ($category->categories as $childCategory
  30.    @include('category.child_category', ['child_category' => $childCategory]) 
  31.    @endforeach 
  32.    @endforeach 
  33.   </tbody> 
  34.  </table> 

递归部分加载自身模版child_category.blade.php

  1. <tr class="tr-shadow"
  2.  <td>{{ $child_category->id }}</td> 
  3.  <td>|{{ str_repeat('--',$child_category->level-1) }} {{ $child_category->title }}</td> 
  4.  <td> 
  5.   <span class="block-email">{{ $child_category->name }}</span> 
  6.  </td> 
  7.  <td class="desc">{{ $child_category->description }}</td> 
  8.  <td>{{ $child_category->created_at }}</td> 
  9.  <td> 
  10.   <span class="status--process">{{ $child_category->status }}</span> 
  11.  </td> 
  12.  <td></td> 
  13. </tr> 
  14. <tr class="spacer"></tr> 
  15. @if ($child_category->categories) 
  16. @foreach ($child_category->categories as $childCategory
  17. @include('category.child_category', ['child_category' => $childCategory]) 
  18. @endforeach 
  19. @endif 

最后看一下效果

laravel7学习之无限级分类的最新实现方法

Tags: laravel7无限级分类

分享到: