关于:自关联!!!!
Posted hellozizi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于:自关联!!!!相关的知识,希望对你有一定的参考价值。
# 在ORM中设置自关联字段 class Comment(models.Model): user = models.ForeignKey(to=‘UserInfo‘) article = models.ForeignKey(to=‘Article‘) content = models.CharField(max_length=255) create_time = models.DateField(auto_now_add=True) parent = models.ForeignKey(to=‘self‘, null=True) 注意:自关联,关联的是当前表的主键ID字段!!!! 上表中parent对应的是Comment.pk. 切记,若关联错误,则会查询出错.
以上是关于关于:自关联!!!!的主要内容,如果未能解决你的问题,请参考以下文章