写在前面的话
无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下。
创建模型控制器数据迁移文件
这里直接使用artisan命令进行创建
# -a 其实就是all,创建包含模型,控制器(资源),数据迁移文件(工厂模型、seed) php artisan make:model -a Category
运行这条命令,就可以创建好资源控制器。
修改数据迁移文件
首先修改数据迁移文件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(); });
执行迁移命令
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
最后看一下效果
总结
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】
- 谭咏麟.2022-倾·听【环球】【WAV+CUE】
- 4complete《丛生》[320K/MP3][85.26MB]
- 4complete《丛生》[FLAC/分轨][218.01MB]