3

我正在寻找一些关于如何对多个对象执行查询然后在相关对象的详细视图中一起使用它们的建议。这是我现在正在使用的内容:

-- app/models.py --

class Material(models.Model):
  created = models.DateTimeField(auto_now_add=True)
  updated = models.DateTimeField(auto_now=True)
  title = models.CharField(max_length=50)
  slug = models.SlugField()
  description = models.TextField()

  def __str__(self):
    return self.title

class Category(Material):
  parent = models.ForeignKey('self', related_name='children')

class Content(Material):
  author = models.ForeignKey(User)
  category = models.ForeignKey(Category)

class SomeObject(Content):
  # Model specific properties and methods

class SomeOtherObject(Content):
  # Model specific properties and methods

我想要完成的是在类别详细信息视图中同时显示SomeObject和 SomeOtherObject 。这些模型中的每一个都将具有不同的属性,使它们彼此独特。这是通用外键有用的情况吗?

-- app/templates/category_detail.html --

{% block content %}
  <header class="category-header">
    <h1 class="category-title">{{ category.title }}</h1>
  </header><!-- .category-header -->

  <section class="category-items">
    {% for item in category.manager_that_queries_both.all %}
      # Display each item differently depending on the type
    {% empty %}
      "Oops, we couldn't find anything for this category!"
    {% endfor %}
  </section><!-- .category-items -->
{% endblock %}

如果可能的话,我想远离在该产品的整个生命周期内难以维护的黑客攻击。再次感谢你们的帮助=)

4

2 回答 2

2

对于manager_that_queries_both.all您可以使用Django Model Utils

特别是继承管理器

您的外键将引用基类。然后你可以用

Material.objects.select_subclasses()

要根据对象的类型在模板中执行操作,您可以实现此处描述的过滤器。

于 2014-01-18T20:16:10.973 回答
1
class SomeObject(Content):
    # model_specific_arttributes
    is_some_object = True

class SomeOtherObject(Content):
    is_some_object = False

现在您可以if在模板中使用语句来区分这两种类型的对象并使用不同的模板来显示它们。

于 2014-01-18T20:38:58.637 回答