如何使用 CakePHP 管理递归模型中的查找?
我有一个标准的类别递归表
,每个类别可以有一个父类别
;我如何执行 find
来检索整个类别结构?
我尝试更改 recursive
属性,但它仅限于 2 个级别。有没有办法用纯粹的 CakePHP 函数/属性来做到这一点,还是我必须自己编写一个函数并重新创建整个结构?
干杯,
尼古拉斯.
I have a standard recursive table of categories
, each category can have a parent category
; how could I perform a find
to retrieve the entire categories structure?
I tried changing the recursive
property but it's limited to 2 levels. Is there a way to do it with purely CakePHP functions/attributes or do I have to write a function and recreate the entire structure by myself?
Cheers,
Nicolas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么不看看树的行为呢?它应该能满足您的需求!阅读 http://book.cakephp.org/view/1339/Tree
why don't you have a look at the tree behavior? It should do you what you're after! Read up at http://book.cakephp.org/view/1339/Tree