Symfony Doctrine 嵌套设置根查询的路径
symfony中有没有一种方法可以从嵌套的学说集获取从 id 元素指定到 Doctrine_Collection 或数组中的根元素的整个路径/路由?
Is there a way in symfony to get from a doctrine nested set the whole path/route from a specified by id element to the root element in a Doctrine_Collection or array ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这应该返回您所追求的内容:
来自 文档
I think this should return what you are after:
From the docs
如果您正在考虑构建类似面包屑路径的东西,getPath 会做到这一点:
http://www.doctrine-project.org/api/orm/1.2/doctrine/doctrine_node_nestedset.html#getPath%28%29
所以你需要重写 __toString()在你的模型中。如果不这样做,Doctrine 会通过查找名为“名称”、“标题”等的列来尝试猜测要写什么。
If you're thinking of building something like a breadcrumb trail, getPath would do it:
http://www.doctrine-project.org/api/orm/1.2/doctrine/doctrine_node_nestedset.html#getPath%28%29
So you need to override __toString() in your model. If you don't, Doctrine will try to guess what to write by looking for columns called "name", "title" and the like.