递归地获取树的所有父母和孩子

问题描述 投票:5回答:2

我有一个MySQL表格

+--------------------+--------------------+--------------------+
|        Id          |      parent_id     |        title       |
+--------------------+--------------------+--------------------+
|        1           |         0          | Student Management |
|--------------------|--------------------|--------------------|
|        2           |         0          |  Staff Management  |
|--------------------|--------------------|--------------------|
|        3           |         1          |     Add Student    |
|--------------------|--------------------|--------------------|
|        4           |         1          |    View Students   |
|--------------------|--------------------|--------------------|
|        5           |         2          |      Add Staff     |
|--------------------|--------------------|--------------------|
|        6           |         2          |      View Staff    |
|--------------------|--------------------|--------------------|
|        7           |         4          |       Delete       |
|--------------------|--------------------|--------------------|
|        8           |         5          |        Copy        |
+--------------------+--------------------+--------------------+

我希望以递归方式在我的视图中得到上述。

期望的输出

+-------------------------------+------------------------------+
|      Student Mangement        |         Staff Management     |
|        Add Student            |            Add Staff         |
|       View Student            |              Copy            |
|          Delete               |            View Staff        |
+-------------------------------+------------------------------+

我希望将MySQL表格作为上面定义的结构

我的创建方法是

public function create()
{
    $categories = Categories::where('parent_id', '=', 0)->get();
    $permission = Categories::pluck('title','id')->all();
    return view('create-role')->with(compact('categories'));
}

通过上述方法,我将父母视为

@foreach($categories as $category)
   <li>
     {{ $category->title }}
   </li>
 @endforeach

输出为

学生管理

员工管理

请帮助我如何递归地获得上述结构。

php mysql laravel recursion
2个回答
3
投票

首先定义模型中的关系

public function children() {
    return $this->hasMany(Category::class, 'parent_id', 'id');
}

public function parent() {
    return $this->belongsTo(Category::class, 'parent_id', 'id');
}

然后在你看来,我不知道你有多少子级别。但有两种方法:

1-最简单的方法 如果你知道,你将永远不会超过3个级别,只需在你的视图中嵌套3个foreach

首先,你急切地询问

$categories = Category::with('children')->get(); //save you some queries 

@foreach($categories as $category)
    @if( $category->children )
        @foreach($category->children as $level2)
            @if($level2->children)
               @foreach($level2->children as $level3)
                   @if($level3->children)
                       //another foreach
                   @endif
                   {{ $level3->title }}
               @foreach
            @endif
            {{ $level2->title }}
        @endforeach
    @endif

    {{ $category->title }}
@endforeach

2-实际的递归方式。 这是实验性的,未经过测试 定义递归关系

public function recursiveChildren() {
    return $this->children()->with('recursiveChildren');
    //It seems this is recursive
}

1
投票

这是使用php(任何框架)执行此操作的简单递归方式。

基本上你需要一个简单数组中的所有项并运行formatTree,但是你可以改变函数来使用object而不是array。

<?php

function formatTree($tree, $parent)
{
    $tree2 = array();
    foreach ($tree as $item) {
        if ($item['parent_id'] == $parent) {
            $tree2[$item['id']] = $item;
            $tree2[$item['id']]['child'] = formatTree($tree, $item['id']);
        }
    }

    return $tree2;
}


//for demo
$beforeTree = [
    ['id' => 1, 'parent_id' => 0],
    ['id' => 2, 'parent_id' => 1],
    ['id' => 3, 'parent_id' => 2],
    ['id' => 4, 'parent_id' => 0],
    ['id' => 5, 'parent_id' => 4],
    ['id' => 6, 'parent_id' => 4],
];
$afterTree = formatTree($beforeTree, 0);

var_dump($afterTree);
© www.soinside.com 2019 - 2024. All rights reserved.