我使用django-mptt版本(0,5,'+dev')
我的模型看起来:
class Comment(MPTTModel):
content = models.CharField(max_length = 300)
parent = TreeForeignKey('self', null=True, blank=True, related_name='child')
class MPTTMeta:
order_insertion_by = ['-creation_time']现在,我在评论模型中更改Meta:
class MPTTMeta:
order_insertion_by = ['creation_time']然后,我在django外壳下重建树,然后是这。
models.comment.tree.rebuild()
但是,它抛出:AttributeError: type object 'Comment' has no attribute 'tree'
这有什么问题吗?如何在django-mptt重建树?
谢谢!
https://stackoverflow.com/questions/12333242
复制相似问题