我已经成功完成了 django-mptt 教程。我不知道该怎么做是创造一个孩子的孩子。
我说的孩子的孩子,我的意思是第三级深度甚至更多。看下面的例子,我想创建 1.3.1, 1.3.2, 1.3.1.1
1.0 Product Z
1.1 Product A
1.2 Product B
1.3 Product P
1.3.1 Product X
1.3.1.1 Product O
1.3.2 Product Y
2.0 Product H
在我发现的docoinsert_node
中,但对它的理解不足以使其正常工作。我还在代码注释(第 317 行)中发现了一些内容insert_node
:
NOTE: This is a low-level method; it does NOT respect ``MPTTMeta.order_insertion_by``.
In most cases you should just set the node's parent and let mptt call this during save.
我应该使用“insert_node”还是有更好的方法?如果应该使用“insert_node”,那么您能提供一个使用示例吗?