Django mptt 在 get_descendant_count() 上返回 -2

发布于 2024-12-05 08:19:15 字数 296 浏览 1 评论 0原文

我试图获取根节点的后代,但由于某种原因该函数在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撕心裂肺的伤痛 2024-12-12 08:19:15

想通了。数字被搞乱了,我不得不运行rebuild(),这解决了一切

Figured it out. The numbers were messed up, I had to run rebuild() and that fixed everything

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文