0

我收到错误:

Node is not related to this repository
500 Internal Server Error - InvalidArgumentException

更新 1:无论我设置具有特征的树存储库还是扩展抽象存储库,错误都是一样的。

更新 2:完整堆栈跟踪http://pastebin.com/TtaJnyzf

我想从数据库中输出具有树结构的 html 树,特别是我需要获取从根到选定节点的路径。据我了解,这是通过 getPath() 函数完成的。

我在用:

  • Symfony v3.0.6;
  • 教义 v2.5.4
  • StofDoctrineExtensionsBundle [1]

为了管理树结构。

为了设置树结构,我使用了 Symfony.com [2] 上的文档,然后是 GitHub [3]、[4]、[5]、[6] 上的文档。

到目前为止,我在数据库中有一个树结构,我得到了这样的 html 树:

<?php

namespace AppBundle\Controller;

use AppBundle\Entity\Category;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;

class TreeController extends Controller
{
    /**
     * @Route("/tree", name="tree")
     */
    public function treeAction(Request $request)
    {
        $em = $this->getDoctrine()->getManager();

        $repo = $em->getRepository('AppBundle:Category');
        $options = array(
            'decorate' => true,
            'rootOpen' => '<ul>',
            'rootClose' => '</ul>',
            'childOpen' => '<li>',
            'childClose' => '</li>',
            nodeDecorator' => function($node)
            {
                return '<a href="/some_path/...">'. $node['title'] .'</a>';
            }
        );

        $htmlTree = $repo->childrenHierarchy(
            null, /* starting from root nodes */
            false, /* false: load all children, true: only direct */
            $options
        );

        return $this->render('tree/tree_show.html.twig', array('project_tree' => $htmlTree));
    }
}

我更改了两行以显示从树元素的根到所选项目的路径

nodeDecorator' => function($node) use ($repo)
{
    return '<a href="/project_path/'. implode('/', $repo->getPath($node)) .'">'. $node['title'] .'</a>';
}

如 [7] 和 [8] 中所见,存在应该将元素数组从根返回到所选项目的函数 getPath()。

我认为问题可能出在这个代码块上:

$repo->getPath($node)

请指教。感谢您的时间和知识。

4

1 回答 1

0

得到它的工作!

以下是所需的更改:

代替

nodeDecorator' => function($node) use ($repo)
{
    return '<a href="/project_path/'. implode('/', $repo->getPath($node)) .'">'. $node['title'] .'</a>';
}

应该写

'nodeDecorator' => function($node) use ($repo)
{
    return '<a href="/project_path/'. @implode('/', $repo->getPath($repo->findOneBy(array('id' => $node['id'])))) .'">'. $node['title'] .'</a>';
}

并在类别类中添加

public function __toString()
{
    return $this->getTitle();
}

就是这样,现在应该显示每个节点的路径。

于 2016-05-21T20:24:28.687 回答