Django mptt 在 get_descendant_count() 上返回 -2
我试图获取根节点的后代,但由于某种原因该函数在 get_descendant_count() 上返回 -2。
代码如下:
roots = Project.tree.root_nodes()
print(roots[0].get_descendants()) // returns []
print(roots[0].get_descendant_count()) // returns -2
根肯定有一个孩子。
任何人都可以告诉我为什么会发生这种情况?以及如何实现这一目标?谢谢
I am trying to get the descendants of a root node, but for some reason the function returns -2 on get_descendant_count().
Here's the code:
roots = Project.tree.root_nodes()
print(roots[0].get_descendants()) // returns []
print(roots[0].get_descendant_count()) // returns -2
And the root HAS a child for sure.
Anyone can advise me why this is happening? And how to get this going? Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了。数字被搞乱了,我不得不运行rebuild(),这解决了一切
Figured it out. The numbers were messed up, I had to run rebuild() and that fixed everything