我使用 Propel ORM 并且对 Propel 非常陌生。我需要一些帮助,从表中选择数据,但查询不正确。我有一张这样的表(注意:不是实际的表,而是相同的主体):
+---------------------+
| ID | Page | Parent |
+---------------------+
| 1 | A | 0 |
| 2 | B | 0 |
| 3 | C | 2 |
| 4 | D | 3 |
| 5 | E | 1 |
| 6 | F | 0 |
| 7 | G | 3 |
| 8 | H | 4 |
| 9 | I | 6 |
| 10 | J | 5 |
+---------------------+
该表在加载页面时为我提供了类似树的结构。在使用 propel 之前,我有一个带有函数“loadPages”的类,它将内页嵌套在 Pages 类中名为 $nested 的数组上,看起来像这样(注意:不是实际函数,只是一个紧密的表示):
function loadPages($parent=0, $data){
$sql = "sql query here to select pages where parent = $parent";
while($results){
$pages = new Pages();
$pages->setId(blah blah);
$pages->setPage(blah blah);
$pages->setParent(blah blah);
$innerPages = new Pages();
/* load innerpages into the nested array */
$innerPages->loadPages($pages->getId(), $pages->nested);
array_push($data, $pages);
return true;
}
}
基本上我怎么能用 Propel 做到这一点?我可以很容易地拉出父值为 0 的页面,如下所示:
$pages = PagesQuery::create()
->filterByParent(0)
->find();
但是我需要将内页递归地嵌套到它返回的对象中,即使在 Propel 网站上的所有好的文档中,我的努力也没有得到很大的回报。
使用我的旧 Pages 类,如果我 print_r $data 我会得到这样的东西(这里只是使用上表的一个示例。):
Array(
[0] => Pages Object
(
[id] => 2
[page] => B
[parent] => 0
[nested] = Array(
[0] => Pages Object
(
[id] => 3
[page] => C
[parent] => 2
)
)
)
我已经让这个工作了,但我不确定它是最好的方法。
function loadPages($parent=0, $siteId, &$arr){
$arr = PagesQuery::create()
->filterBySiteId($siteId)
->filterByParentId($parent)
->find();
foreach ($arr as $i => $v) {
$arr[$i]->nested = '';
loadPages($v->getId(), $siteId, $arr[$i]->nested);
}
}
$site->pages = '';
loadPages(0, $site->getId(), $site->pages);
我的模式没有自我关系设置,所以我刚刚像这样在同一个表中添加了一个外键并重新运行推进以重新创建类。我仍然不确定如何写出推进查询(我从架构中删除了几列只是为了节省空间)。抱歉,这个帖子现在越来越火了。
<table name="pages" phpName="Pages">
<column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true"/>
<column name="userId" type="integer" required="false"/>
<column name="siteId" type="integer" required="false"/>
<column name="parentId" type="integer" required="false"/>
<foreign-key foreignTable="users" phpName="Users" refPhpName="Pages">
<reference local="userId" foreign="id"/>
</foreign-key>
<foreign-key foreignTable="sites">
<reference local="siteId" foreign="id"/>
</foreign-key>
<foreign-key foreignTable="pages">
<reference local="parentId" foreign="id"/>
</foreign-key>
</table>