发布于2021-03-14 05:55 阅读(612) 评论(0) 点赞(14) 收藏(3)
无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下。
这里直接使用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');
这里使用递归渲染。
在 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
最后看一下效果
原文链接:https://www.cnblogs.com/wjcms/p/13749566.html
作者:sdjsdh
链接:http://www.phpheidong.com/blog/article/3089/d2ef9f942d2948903d3c/
来源:php黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 php黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-4
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!