我收到错误:
Node is not related to this repository
500 Internal Server Error - InvalidArgumentException
更新1:如果我设置树repository with traits或extend abstract repository,则错误无关紧要。
更新2:完整堆栈跟踪http://pastebin.com/TtaJnyzf
我想从数据库输出具有树结构的html树,特别是我需要从根到选定节点的路径。据我了解,这是通过getPath()函数完成的。
我正在使用:
以管理树结构。
要设置树结构,我在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)
请指教。 感谢您的时间和知识。
答案 0 :(得分: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>';
}
并在Category类中添加
public function __toString()
{
return $this->getTitle();
}
就是这样,现在应该显示每个节点的路径。