在Django模型中按顺序排列多对多关系

时间:2010-05-23 19:21:23

标签: django django-models many-to-many

我正在写一个小网站来存储我写的文件。关系论文< - >作者很重要,但作者姓名的顺序(哪一个是第一作者,哪一个是二阶,依此类推)也很重要。

我只是在学习Django,所以我不太了解。无论如何,到目前为止我已经完成了:

from django.db import models

class author(models.Model):
    Name = models.CharField(max_length=60)
    URLField = models.URLField(verify_exists=True, null=True, blank=True)

    def __unicode__(self):
        return self.Name

class topic(models.Model):        
    TopicName = models.CharField(max_length=60)
    def __unicode__(self):
        return self.TopicName

class publication(models.Model):
    Title           = models.CharField(max_length=100)
    Authors         = models.ManyToManyField(author, null=True, blank=True)
    Content         = models.TextField()
    Notes           = models.TextField(blank=True)
    Abstract        = models.TextField(blank=True)
    pub_date        = models.DateField('date published')
    TimeInsertion   = models.DateTimeField(auto_now=True)
    URLField        = models.URLField(verify_exists=True,null=True, blank=True)
    Topic           = models.ManyToManyField(topic, null=True, blank=True)

    def __unicode__(self):
        return self.Title

这项工作很好,因为我现在可以定义作者是谁。但我无法订购它们。我该怎么做?

当然我可以添加一系列关系:第一作者,第二作者,...... 但它会很难看,也不会灵活。还有更好的主意吗?

由于

1 个答案:

答案 0 :(得分:6)

您可以向该ManyToMany关系添加'through' model,并在该模型中存储一个值,该值显示作者应该与此出版物的特定关联中出现的顺序。

(奖励提示 - 它可能会帮助您顺利 - 在清晰度方面 - 为类/模型名称使用首字母大写字母并保留属性和实例/对象的小写 - 如果您与其他人共享代码,它会更容易,因为它是一种常见的模式)