How to have two models reference each other Django

◇◆丶佛笑我妖孽 提交于 2019-12-03 22:20:24

The Django documentation for the ForeignKey field states:

If you need to create a relationship on a model that has not yet been defined, you can use the name of the model, rather than the model object itself.

So in your case, that would be:

class Game(models.Model):
    # Other fields...
    on = models.ForeignKey('Member', blank = True)

class Member(models.Model):
    # Other fields...
    game = models.ForeignKey(Game)

You don't need to have the two models reference each other with foreign keys. Remove the line:

on = models.ForeignKey(Member, blank = True) #<----

and logically your Member's will still be associated to different Game's (and this makes more sense because a member can belong to one game at a time, whereas a game can have more than one member).

You can use reverse relation to figure out which members are on a particular game.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!