6

我可能需要一些帮助来设计我的模型及其关系。

简短概述

  • :书名(例如“指环王”)
  • Tag:与书籍相关的标签(例如“Fantasy”、“Wizard”、“Epic Fight”)
  • Aspect:与标签相关的方面,或者换句话说,当特定标签出现时用户可以评价的事物,例如:
    • 对于标签“幻想”方面可以是“世界细节”和“时间”
    • 对于标签“史诗般的战斗”方面可能是“戈尔水平”和“战斗紧张”

每个标签都可以在 Book 的多个实例中使用(例如“指环王”和“Discworld”都有标签“Fantasy”)

每个方面都可以在标签的多个实例中使用(例如“幻想”和“科幻”都具有方面“世界细节”)

这是一个描述性图像:

在此处输入图像描述

(哇,这些都是大的)

“你为什么需要那张额外的桌子 BookAspect?” 你可能会问?

因为我想存储与特定书籍相关的每个方面的用户评分。

这是这里的主要问题。我想在 Django 中对此进行建模,这就是我目前所得到的:

class Book(models.Model):
    title = models.CharField(max_length=100, unique=True)
    tags = ManyToManyField(Tag)
    # the following line is a workaround...
    aspects = models.ManyToManyField(Aspect, through='BookAspect')

class Tag(models.Model):
    name = models.CharField(max_length=100)
    aspects = models.ManyToManyField(Aspect)

class Aspect(models.Model):
    name = models.CharField(max_length=100)

# this class is a workaround ...
class BookAspect(models.Model):
    book = models.ForeignKey(Book)
    aspect = models.ForeignKey(Aspect)
    # this is from django-ratings
    rating = RatingField(range=5, can_change_vote=True, allow_delete=True, blank=True)

    class Meta:
        unique_together = ('book', 'aspect',)

除了模型之外,我还创建了一个m2m_changed信号监听器action="post_add"

@receiver(m2m_changed, sender=Book.tags.through)
def m2m_changed_book(sender, instance, action, reverse, pk_set, **kwargs):
    if action is not 'post_add' or reverse:
        return

    # iterate through all newly created tags to manually add
    # the aspects from each tag to the BookAspect table
    for tag_id in pk_set:
        aspects = Tag.objects.get(pk=tag_id).aspects.all()
        # this is annoying, i have to manually set the relations...
        for aspect in aspects:
            bookAspect = BookAspect(book=instance, aspect=aspect)
            bookAspect.save()

虽然这应该可行,但我需要额外的逻辑来处理删除的标签。

但真正令人讨厌的是我必须手动添加每本书的方面关系,以便我可以存储用户评分。当然,我需要对不同书籍的同一方面进行不同的评级。

问题

1.这是正确的方法吗,我错过了什么还是没有我想的那么复杂?

2. 是否可以“自动化” Book-Aspect 关系,这样我就不必手动更新关系?

3. 如何在 Django 中建模?

4

1 回答 1

2
  • 我认为它可以更简单地完成。
  • 我认为,在某种程度上。
  • 我会改变:

    class Book(models.Model):
      title = models.CharField(max_length=100, unique=True)
      tags = ManyToManyField(Tag)
    

由于该领域与课堂aspects无关。Book

我不知道你为什么写BookAspect。关于用户评分,您可以执行以下操作:

class BookRating(models.Model):
  book = models.ForeignKey(Book)
  aspect = models.ForeignKey(Aspect)
  rating = models.RatingField()
  # Method to rate a book and check the aspect belong to one of the book's tags
  def rate(book, aspect):
    # check the aspect is related to a tag which is also related to the book
    # if so, save a new rating entry
  # You can also override the save() method to check the aspect is valid for the book
于 2012-05-14T23:29:15.870 回答