Django:如何创建没有相关名称的外键?

时间:2011-03-17 21:00:32

标签: django

我遇到了冲突自动相关名称的问题,并且通常不需要在相关模型上安装外部经理。

例如,如果我能这样做会很棒:

class ExtraWidgetThingy(models.Model):
    product = models.ForeignKey("product.Product")
    also_tastes_good_with = models.ForeignKey(
        "product.Product", related_name=None)

而不是related_name='extrawidgetthingys_that_also_tastes_good_with_this'

1 个答案:

答案 0 :(得分:19)

来自the docs

  

如果您更喜欢Django没有创建向后关系,请将related_name设置为'+'