在Django中我有以下模型。
在Supervisor模型中,我有一个多对多字段,没有明确定义的直通表。在Topic模型的ForeignKey字段中,我想引用自动创建的中间模型(由Supervisor模型中的多对多字段创建),但我不知道中间体的名称是什么模型(因此我写了' ???'那里,而不是名字。)
Django documentation告诉"如果您没有指定显式直通模型,则仍然可以使用隐式直通模型类来直接访问为保持关联而创建的表。&#34 ;
如何在ForeignKey字段中使用Django中自动创建的隐式直通模型类?
import re
from django.db import models
class TopicGroup(models.Model):
title = models.CharField(max_length=500, unique='True')
def __unicode__(self):
return re.sub(r'^(.{75}).*$', '\g<1>...', self.title)
class Meta:
ordering = ['title']
class Supervisor(models.Model):
name = models.CharField(max_length=100)
neptun_code = models.CharField(max_length=6)
max_student = models.IntegerField()
topicgroups = models.ManyToManyField(TopicGroup, blank=True, null=True)
def __unicode__(self):
return u'%s (%s)' % (self.name, self.neptun_code)
class Meta:
ordering = ['name']
unique_together = ('name', 'neptun_code')
class Topic(models.Model):
title = models.CharField(max_length=500, unique='True')
foreign_lang_requirements = models.CharField(max_length=500, blank=True)
note = models.CharField(max_length=500, blank=True)
supervisor_topicgroup = models.ForeignKey(???, blank=True, null=True)
def __unicode__(self):
return u'%s --- %s' % (self.supervisor_topicgroup, re.sub(r'^(.{75}).*$', '\g<1>...', self.title))
class Meta:
ordering = ['supervisor_topicgroup', 'title']
答案 0 :(得分:9)
它刚刚调用through
- 所以在你的情况下,Supervisor.topicgroups.through
。
虽然我认为如果您在主题模型中明确地引用它,您可以直接将其声明为模型。