Laravel 4 - 雄辩.无限的孩子​​进入可用的数组? [英] Laravel 4 - Eloquent. Infinite children into usable array?

查看:16
本文介绍了Laravel 4 - 雄辩.无限的孩子​​进入可用的数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个类别表.每个类别都可以有一个可选的父级(如果没有父级,则默认为 0).

I've got a categories table. Each category can have an optional parent (Defaults to 0 if no parent).

我想做的是用类别的级别构建一个简单的 html 列表树.

What I want to do is build a simple html list tree with the levels of the categories.

示例日期:

Foods
-- Fruit
---- Apple
---- Banana
---- Orange
-- Veg
---- Cucumber
---- Lettuce
Drinks
-- Alcoholic
---- Beer
---- Vodka
Misc
-- Household Objects
---- Kitchen
------ Electrical
-------- Cooking
---------- Stove
---------- Toaster
---------- Microwave

请注意,这需要大约 10 个级别".我希望它是无限的,但我真的不想走使用嵌套集合模型的路线,因为它会导致这个项目的巨大延迟.

Note that this needs to work for around 10 'levels'. I'd love it to be infinite but I really dont want to be going down the route of using a nested set model as it'll cause huge delays on this project.

有关 laravel 的文档很糟糕,甚至没有真正提到从哪里开始.几天来我一直在玩它,试图弄清楚该怎么做,但如果没有一个巨大的混乱块,每个循环相互之间有 10 次,我似乎一无所获.

The docs on this for laravel are terrible, with no real reference as to where to even start. I've been playing with it for days trying to work out what to do and seem to be getting nowhere without a huge messy block of for each loops within each other 10 times.

我的数据树在我的模型中使用以下内容:

I've got my tree of data using the following in my model:

<?php
class Item extends Eloquent {
    public function parent()
    {
        return $this->hasOne('Item', 'id', 'parent_id');
    }

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

    public function tree()
    {
        return static::with(implode('.', array_fill(0,10, 'children')))->where('parent_id', '=', '0')->get();
    }
}

这使所有父级和子级都达到了 10 级.这很好用,但是如果不手动在彼此之间设置 10 个 foreach 循环,您就无法真正对子数据执行任何操作.

This gets all the parent and children up to a level of 10. This works fine, but you cant really then do anything with the child data without manually having 10 foreach loops within each other.

我在这里做错了什么?当然这不应该这么难/执行不力吗?我想要做的就是获得一个简单的 html 列表,其中包含树结构中的项目.

What am I doing wrong here? Surely this shouldn't be this hard/poorly executed? All I want do do is get a simple html list with the items in a tree structure.

我整理了一个上面使用的虚拟数据的快速 SQLFiddle 示例:http://sqlfiddle.com/#!2/e6d18/1

I've put together a quick SQLFiddle example of the dummy data used above: http://sqlfiddle.com/#!2/e6d18/1

推荐答案

这比我平时早上的填字游戏有趣多了.:)

This was much more fun than my usual morning crossword puzzle. :)

这是一个 ItemsHelper 类,它会做你正在寻找的事情,而且更好的是它会递归到你想要的任何地方.

Here is an ItemsHelper class that will do what you are looking for, and better yet will recurse as far down as you want.

app/models/ItemsHelper.php:

<?php

  class ItemsHelper {

    private $items;

    public function __construct($items) {
      $this->items = $items;
    }

    public function htmlList() {
      return $this->htmlFromArray($this->itemArray());
    }

    private function itemArray() {
      $result = array();
      foreach($this->items as $item) {
        if ($item->parent_id == 0) {
          $result[$item->name] = $this->itemWithChildren($item);
        }
      }
      return $result;
    }

    private function childrenOf($item) {
      $result = array();
      foreach($this->items as $i) {
        if ($i->parent_id == $item->id) {
          $result[] = $i;
        }
      }
      return $result;
    }

    private function itemWithChildren($item) {
      $result = array();
      $children = $this->childrenOf($item);
      foreach ($children as $child) {
        $result[$child->name] = $this->itemWithChildren($child);
      }
      return $result;
    }

    private function htmlFromArray($array) {
      $html = '';
      foreach($array as $k=>$v) {
        $html .= "<ul>";
        $html .= "<li>".$k."</li>";
        if(count($v) > 0) {
          $html .= $this->htmlFromArray($v);
        }
        $html .= "</ul>";
      }
      return $html;
    }
  }

我刚刚使用了新安装的 Laravel 4 和基本的 hello.php 视图.

I just used a new installation of Laravel 4 and the basic hello.php view.

这是我在 app/routes.php 中的路线:

Here is my route in app/routes.php:

Route::get('/', function()
{
  $items = Item::all();
  $itemsHelper = new ItemsHelper($items);
  return View::make('hello',compact('items','itemsHelper'));
});

虽然我的视图不使用 items 变量,但我将它传递到这里是因为您可能还想对它们做其他事情.

Although my view doesn't use the items variable, I'm passing it here because you probably will want to do something else with them too.

最后,我的 app/views/hello.php 只有一行:

And finally, my app/views/hello.php just has one line:

<?= $itemsHelper->htmlList();?>

输出如下:

  • 食物
    • 水果
      • 苹果
        • 香蕉
        • 橙色
        • 蔬菜
          • 黄瓜
          • 生菜
          • 饮料
            • 酒类
              • 啤酒
              • 伏特加
              • 杂项
                • 家居用品
                  • 厨房
                    • 电器
                      • 烹饪
                        • 炉灶
                        • 烤面包机
                        • 微波炉

                        注意:您的 SQL Fiddle 有 5(Orange")作为 Cucumber 和 Lettuce 的 parent_id,我必须将其更改为 6(Veg").

                        Note: your SQL Fiddle had 5 ("Orange") as the parent_id for Cucumber and Lettuce, I had to change it to 6 ("Veg").

                        这篇关于Laravel 4 - 雄辩.无限的孩子​​进入可用的数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆