新闻中心

记录团队成长点滴以及对技术、理念的探索,同时我们乐于分享!

Laravel框架如何实现无限极分类?

2020-07-31 10:01:15 分类:技术学堂

Laravel框架如何实现无限极分类,麦讯网络科技分享一下实现的具体方法。


表结构如下:

CREATE TABLE `goods_category` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
  `name` varchar(500) DEFAULT '' COMMENT '分类名称',
  `pid` int(5) unsigned DEFAULT '0' COMMENT '父级id',
  `level` tinyint(3) unsigned DEFAULT '1' COMMENT '分类等级',
  `status` tinyint(3) unsigned DEFAULT '0' COMMENT '分类状态:0-禁用,1-正常',
  `created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
  PRIMARY KEY (`id`) USING BTREE,
  KEY `status` (`status`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='商品分类表';

业务代码:

//模型
public function children() {
    return $this->hasMany(get_class($this), 'pid' ,'id');
}

public function allChildren() {
    return $this->children()->with( 'allChildren' )->where('status',1)->orderBy('level','asc');
}

//控制器
$list = GoodsCategory::with('allChildren')->where('pid',0)->where('status',1)->orderBy('level','asc')->get();
dd($list->toArray());


相比递归和引用实现无限极分类的两种方式,是不是简单高效很多