- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章laravel7学习之无限级分类的最新实现方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
写在前面的话 。
无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下.
创建模型控制器数据迁移文件 。
这里直接使用artisan命令进行创建 。
1
2
|
# -a 其实就是all,创建包含模型,控制器(资源),数据迁移文件(工厂模型、seed)
php artisan make:model -a Category
|
运行这条命令,就可以创建好资源控制器.
修改数据迁移文件 。
首先修改数据迁移文件xxx_create_categories_table. 。
打开文件,修改里面的up方法,添加相应字段.
1
2
3
4
5
6
7
8
9
10
11
|
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();
});
|
执行迁移命令 。
1
|
php artisan migrate
|
嵌套模型实现读取 。
1
2
3
4
5
6
|
//App\Models\Category.php
public
function
categories()
{
return
$this
->hasMany(self::
class
,
'pid'
,
'id'
)->with(
'categories'
);
}
|
控制器调用 。
1
2
3
4
5
6
7
8
9
|
//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,我们添加以下内容
1
|
Route::get(
'category'
,
'CategoryController@index'
);
|
blade模版渲染 。
这里使用递归渲染.
在 resources/views/categories.blade.php 文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<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 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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无限级分类实现内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://www.wjcms.net/archives/laravel之无限级分类实现方法 。
最后此篇关于laravel7学习之无限级分类的最新实现方法的文章就讲到这里了,如果你想了解更多关于laravel7学习之无限级分类的最新实现方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有 3 个列表项,每 3 秒向上旋转一次。我正在使用 transformY 属性来做这件事。问题是,当它到达最后一个元素时,它会循环返回,从而产生重新开始的效果。 如何通过在最后一项之后继续向上旋转
我如何制作一个处理旋转的无限/重复世界,就像在这个游戏中一样: http://bloodfromastone.co.uk/retaliation.html 我通过具有这样的层次结构对我的旋转移动世界进
这个问题已经有答案了: Using explicitly numbered repetition instead of question mark, star and plus (4 个回答) 已关闭
程序说明: I have this program of mine which is intended to read every word from a file (large one) and t
while 循环应该比较这两个对象的 ibsn。正在比较的对象: list[0] = new ReadingMatter ("Words and Stuff", "9-082-1090-1");
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我完全被屏蔽了。我尝试修改 C 中的“警报”信号,以便在秒数到期时读取一个简单的变量。我的代码如下: 在主要部分: int semnal; signal(SIGALRM, alarmHandle
我正在接受多行信息(字符串,直到我稍后解析它们)。例如: 1 5 0 2 9 6 2 9 1 我编写这段代码来分隔行,因为我将不得不以某种方式操作每一行。 Scanner scan = new Sca
我不熟悉 jQuery,并且我有多余的 jQuery 调用,我想将它们放入循环中。 $('.class1').on('click', function () { ... $('.class2').on
我有一个树结构,其中每个节点都有 5 个子节点,并且不允许超过 5 个。我希望以广度优先搜索的方式遍历这棵树。 现在我想使用广度优先搜索方式从选定的父节点计算空节点。 例如 如果给定的父节点为 1,则
目标/动机 我想写一个服务,它应该一直运行。但是当服务已经运行时,应该不可能再次启动该服务。 用例 用户 X 打开页面 myService.php 并通过单击页面上的按钮启动服务。之后关闭浏览器。一段
我正在尝试编译 shogun 工具箱,但遇到了这个错误 C:/shogun-3.0.0/shogun-3.0.0/src/shogun/../shogun/mathematics/Math.h
需要学校的 JavaScript 作业帮助,但不知道该怎么做,希望得到一些提示? 我们应该创建一个 6 面掷骰子程序,用户可以选择应该掷多少个骰子,最少 1 个和最多 5 个骰子。 所用骰子数量的总和
我在无限 ScrollView 中有 5 张图片。 因此,为了使 scrollView 无限/循环,我将图像定位如下: 5 1 2 3 4 5 1含义:最后一张图片第一张图片第二张图片.....最后一
我正在使用 ExTwitter库,并希望能够偶尔终止对流式 API 的调用以更改参数。 我当前的代码看起来像这样: for tweet #finished end 关于elixir - 如何中断(无
我想每 3 秒更改一次 div 的背景。这需要循环,因此一旦最后一个背景图像显示,它就会循环回到第一个背景图像,依此类推。我在这样做时遇到了麻烦。 我之前发过一篇文章,内容非常模糊,没有得到帮助。
我在做this教程,无法让我的页面正确加载。我不断在控制台中收到错误:[$rootScope:infdig]。 我对 Angular 很陌生,但从我读到的内容来看,我在某个地方有一个无限循环。我预计它
所以我试图创建一个无限的 asyncIterator/生成器。该代码应该为“for wait of”循环生成“Hello”和“Hi”,然后永远等待下一个值。问题是它不等待第三个值,也不在循环后打印 2
下图显示了我如何在 HTML5/JS 中制作无限背景滚动。我的连续背景由 X block Canvas 组成。我将在到达下一个 Canvas 之前立即渲染它,并释放上一个 Canvas。这里的问题是动
作为一个业余项目,我正在研究一些自制的素数生成问题,尝试编写一些不同的实现作为自学 C 和 C++ 的方法。当然,生成低素数的最快方法是已经拥有它们,所以我想着手建立一个硬盘素数列表数据文件。我想编写
我是一名优秀的程序员,十分优秀!