我使用Symfony1.4中的doctrine nestedSet行为创建了一个模型,因为我正在尝试使用heiracrchial页面创建一个基本的cms。
我有几页,有父节点和子节点
Parent_1
Child_1
Child_2
Parent_2
Child_3
我的问题是根据导航标题呈现这些项目。 (<ul><li>
等)
最简单/最好的方法是什么?
我希望root
个节点包含/parent_1
和后续子节点等网址,为parent_1/child_1
由于
答案 0 :(得分:2)
我编写了一个递归函数,它将从任何节点开始绘制树。指定根节点将绘制整个树。它在我的购物车插件中使用,您可以查看已完成的用户界面here的演示。
我已经粘贴了下面的功能,但是从我的实现中修改了它以使其更清晰。
<?php
//Render a nested set. Recurses for all descendants of that node. Can be used to draw entire tree, when specifying root id.
//Secondary parameter ($node) is used for performance boost, internally in function.
public static function display_node($id, $node = null) {
$isRoot = false;
if ($node == null) {
$node = Doctrine_Core::getTable('YOURNESTEDTABLENAME')->findOneById($id)->getNode();
if ($node->isRoot()) {
$isRoot = true;
}
}
$record = $node->getRecord();
if (!$isRoot) {
echo "<li class='tree_item' id='list_". $record->getId() . "'>";
echo "<div class='listitem' id='listitem_".$record->getId()."'>";
echo $record->getName();
echo "<div style='clear:both'></div>";
echo "</div>";
if ($node->hasChildren()) {
echo "<ol>";
foreach ($node->getChildren() as $child) {
self::display_node($child->getId(), $child->getNode());
}
echo "</ol>";
}
}
else {
if ($node->hasChildren()) {
echo "<ol class='sortable'>";
echo "<li class='tree_item root_item' style='position: relative;' id='list_". $record->getId() . "'>";
foreach ($node->getChildren() as $child) {
self::display_node($child->getId(), $child->getNode());
}
echo "</ol>";
}
}
}
?>
您还可以轻松修改代码以根据需要添加网址。 希望这会有所帮助。如果您需要澄清,请告诉我。
答案 1 :(得分:1)
我讨厌在除模板之外的任何地方回显视图元素,所以这是我的版本。
//actions:
public function executeShow(sfWebRequest $request)
{
$this->tree = Doctrine::getTable('Model')->getMenuTree();
}
//lib:
class ModelTable extends Doctrine_Table
{
/**
* Gets tree element in one query
*/
public function getMenuTree()
{
$q = $this->createQuery('g')
->orderBy('g.root_id')
->addOrderBy('g.lft')
->where('g.root_id NOT NULL');
return $q->execute(array(), Doctrine_Core::HYDRATE_ARRAY_HIERARCHY);
}
}
//template:
<?php function echoNode($tree, $parent=null) { ?>
<ul>
<?php foreach ($tree as $node): ?>
<li data-id='<?php echo $node['id'] ?>'>
<?php echo $node['name'] ?>
<?php if (count($node['__children']) > 0): ?>
<?php echo echoNode($node['__children'], $node) ?>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<?php } ?>
<?php echo echoNode($tree) ?>
现在,如果你需要树的一部分,你可以做一个动作或更好的,为此写一个单独的模型方法。