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


Posted in PHP onSeptember 30, 2020

写在前面的话

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

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

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

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

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

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

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

修改数据迁移文件

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

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

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

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

执行迁移命令

php artisan migrate

嵌套模型实现读取

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

控制器调用

//app\Http\controllers\CategooryController.php
# use模型
use App\Models\Category;
 
public function index()
 {
  $categories = Category::with('categories')->where('pid', 0)->get();
  return view('category.index', compact('categories'));
 }

添加路由

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

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

blade模版渲染

这里使用递归渲染。

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

<table class="table table-borderless table-data3">
  <thead>
   <tr>
    <th>编号</th>
    <th>分类名称</th>
    <th>分类标识</th>
    <th>分类描述</th>
    <th>创建时间</th>
    <th>状态</th>
    <th>操作</th>
   </tr>
  </thead>
  <tbody>
   @foreach ($categories as $category)
   <tr class="tr-shadow">
    <td>{{ $category->id }}</td>
    <td>{{ $category->title }}</td>
    <td>
     <span class="block-email">{{ $category->name }}</span>
    </td>
    <td class="desc">{{ $category->description }}</td>
    <td>{{ $category->created_at }}</td>
    <td>
     <span class="status--process">{{ $category->status }}</span>
    </td>
    <td></td>
   </tr>
   <tr class="spacer"></tr>
   @foreach ($category->categories as $childCategory)
   @include('category.child_category', ['child_category' => $childCategory])
   @endforeach
   @endforeach
  </tbody>
 </table>

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

<tr class="tr-shadow">
 <td>{{ $child_category->id }}</td>
 <td>|{{ str_repeat('--',$child_category->level-1) }} {{ $child_category->title }}</td>
 <td>
  <span class="block-email">{{ $child_category->name }}</span>
 </td>
 <td class="desc">{{ $child_category->description }}</td>
 <td>{{ $child_category->created_at }}</td>
 <td>
  <span class="status--process">{{ $child_category->status }}</span>
 </td>
 <td></td>
</tr>
<tr class="spacer"></tr>
@if ($child_category->categories)
@foreach ($child_category->categories as $childCategory)
@include('category.child_category', ['child_category' => $childCategory])
@endforeach
@endif

最后看一下效果

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

总结

到此这篇关于laravel7学习之无限级分类最新实现方法的文章就介绍到这了,更多相关laravel7无限级分类实现内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

PHP 相关文章推荐
PHP5中MVC结构学习
Oct 09 PHP
Discuz! 5.0.0论坛程序中加入一段js代码,让会员点击下载附件前自动弹出提示窗口
Apr 18 PHP
PHP iconv 解决utf-8和gb2312编码转换问题
Apr 12 PHP
php代码收集表单内容并写入文件的代码
Jan 29 PHP
基于PHPExcel的常用方法总结
Jun 13 PHP
php旋转图片90度的方法
Nov 07 PHP
php中convert_uuencode()与convert_uuencode函数用法实例
Nov 22 PHP
PHP模板引擎smarty详细介绍
May 26 PHP
php使用GD实现颜色渐变实例
Jun 02 PHP
php的debug相关函数用法示例
Jul 11 PHP
超强多功能php绿色集成环境详解
Jan 25 PHP
在Laravel的Model层做数据缓存的实现
Sep 26 PHP
如何利用PHP实现上传图片功能详解
Sep 24 #PHP
JS中彻底删除JSON对象组成的数组中的元素
Sep 22 #PHP
phpstudy隐藏index.php的方法
Sep 21 #PHP
如何在Laravel之外使用illuminate组件详解
Sep 20 #PHP
PHP编程一定要改掉的5个不良习惯
Sep 18 #PHP
搭建PhpStorm+PhpStudy开发环境的超详细教程
Sep 17 #PHP
深入浅析安装PhpStorm并激活的步骤详解
Sep 17 #PHP
You might like
PHP 5.3.1 安装包 VC9 VC6不同版本的区别是什么
2010/07/04 PHP
Yii框架函数简单用法分析
2019/09/09 PHP
服务器安全设置的几个注册表设置
2007/07/28 Javascript
基于JQuery的简单实现折叠菜单代码
2010/09/15 Javascript
AngularJS入门教程之学习环境搭建
2014/12/06 Javascript
基于SpringMVC+Bootstrap+DataTables实现表格服务端分页、模糊查询
2016/10/30 Javascript
使用纯JS代码判断字符串中有多少汉字的实现方法(超简单实用)
2016/11/12 Javascript
单行 JS 实现移动端金钱格式的输入规则
2017/05/22 Javascript
vue 优化CDN加速的方法示例
2018/09/19 Javascript
vue axios 简单封装以及思考
2018/10/09 Javascript
angular6的table组件开发的实现示例
2018/12/26 Javascript
js中async函数结合promise的小案例浅析
2019/04/14 Javascript
利用js实现简易红绿灯
2020/10/15 Javascript
如何使用 vue-cli 创建模板项目
2020/11/19 Vue.js
Python中的defaultdict模块和namedtuple模块的简单入门指南
2015/04/01 Python
python实现同时给多个变量赋值的方法
2015/04/30 Python
python UNIX_TIMESTAMP时间处理方法分析
2016/04/18 Python
基于python实现在excel中读取与生成随机数写入excel中
2018/01/04 Python
更换Django默认的模板引擎为jinja2的实现方法
2018/05/28 Python
python+opencv+caffe+摄像头做目标检测的实例代码
2018/08/03 Python
pytorch 自定义参数不更新方式
2020/01/06 Python
解决TensorFlow模型恢复报错的问题
2020/02/06 Python
利用 PyCharm 实现本地代码和远端的实时同步功能
2020/03/23 Python
canvas 基础之图像处理的使用
2020/04/10 HTML / CSS
GWT的应用有哪两种部署模式
2012/12/21 面试题
灵泰克Java笔试题
2016/01/09 面试题
建筑施工实习自我鉴定
2013/09/19 职场文书
自我鉴定范文
2013/11/10 职场文书
致铅球运动员广播稿精选
2014/01/12 职场文书
保安队长职务说明书
2014/02/23 职场文书
表决心的诗句大全
2014/03/11 职场文书
遗嘱公证书标准样本
2014/04/08 职场文书
大二学生学年自我鉴定
2014/09/12 职场文书
2014三年级班主任工作总结
2014/12/05 职场文书
解约证明模板
2015/06/19 职场文书
Python之Matplotlib绘制热力图和面积图
2022/04/13 Python