- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题,我现在想解决一天。
随着模型
class Quote(models.Model):
text = models.TextField()
source = models.ForeignKey(Source)
tags = models.ManyToManyField(Tag)
...
class Source(models.Model):
title = models.CharField(max_length=100)
...
class Tag(models.Model):
name = models.CharField(max_length=30,unique=True)
slug = models.SlugField(max_length=40,unique=True)
...
Source
有很多
Quote
s, 一
Quote
有很多
Tag
s。
Tag
包含在 Source
中的 s (通过包含的 Quote
s)? def source_tags(self):
tags = Tag.objects.filter(quote__source__id=self.id).distinct().annotate(usage_count=Count('quote'))
return sorted(tags, key=lambda tag:-tag.usage_count)
{% for tag in source.source_tags|slice:":5" %}
source.quote
{% endfor %}
sources = Source.objects.all().prefetch_related('quote_set__tags')
Tag
s 用于一个来源,以及我将如何计算它们而不是列出重复的标签。
最佳答案
这将在单个 SQL 查询中获得结果:
# views.py
from django.db.models import Count
from .models import Source
def get_tag_count():
"""
Returns the count of tags associated with each source
"""
sources = Source.objects.annotate(tag_count=Count('quote__tags')) \
.values('title', 'quote__tags__name', 'tag_count') \
.order_by('title')
# Groupe the results as
# {source: {tag: count}}
grouped = {}
for source in sources:
title = source['title']
tag = source['quote__tags__name']
count = source['tag_count']
if not title in grouped:
grouped[title] = {}
grouped[title][tag] = count
return grouped
# in template.html
{% for source, tags in sources.items %}
<h3>{{ source }}</h3>
{% for tag, count in tags.items %}
{% if tag %}
<p>{{ tag }} : {{ count }}</p>
{% endif %}
{% endfor %}
{% endfor %}
# tests.py
from django.test import TestCase
from .models import Source, Tag, Quote
from .views import get_tag_count
class SourceTags(TestCase):
def setUp(self):
abc = Source.objects.create(title='ABC')
xyz = Source.objects.create(title='XYZ')
inspire = Tag.objects.create(name='Inspire', slug='inspire')
lol = Tag.objects.create(name='lol', slug='lol')
q1 = Quote.objects.create(text='I am inspired foo', source=abc)
q2 = Quote.objects.create(text='I am inspired bar', source=abc)
q3 = Quote.objects.create(text='I am lol bar', source=abc)
q1.tags = [inspire]
q2.tags = [inspire]
q3.tags = [inspire, lol]
q1.save(), q2.save(), q3.save()
def test_count(self):
# Ensure that only 1 SQL query is done
with self.assertNumQueries(1):
sources = get_tag_count()
self.assertEqual(sources['ABC']['Inspire'], 3)
self.assertEqual(sources['ABC']['lol'], 1)
annotate
和
values
ORM 中的函数。它们非常强大,因为它们会自动执行连接。它们也非常高效,因为它们只访问数据库一次,并且只返回那些指定的字段。
关于Django prefetch_related 中间表没有重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23405871/
我有一个问题,我现在想解决一天。 随着模型 class Quote(models.Model): text = models.TextField() source = models.F
我有一个 Django 网站,模型为 Event ,让我们说: class Event(models.Model): home = models.ForeignKey('Team', rela
我现在正在构建一个基本的时间记录应用程序,我有一个使用 django-taggit 的 todo 模型。我的 Todo 模型如下所示: class Todo(models.Model): pr
我需要列出我所有的设备。为此,我使用与减少查询量相关的预取。但是其中一个花费了太多时间..我想知道它是否不能更好。 我将从模型构造开始:我想要一个设备列表。 class Device(models.M
我正在尝试优化我的查询,但 prefetch_related 坚持加入表并选择所有字段,即使我只需要关系表中的 id 列表。 您可以忽略第四个查询。它与问题无关。 相关代码: class Contac
在 Django docs 中给出这些模型: class Topping(models.Model): name = models.CharField(max_length=30) class
我有 Menu具有与自身相关的名为 parent 的 ForeignKey 的模型。 如果 parent 为 None 则表示此菜单是父菜单,如果它显示另一个 Menu 对象,则表示它是其父级的子菜单
我正在尝试使用 PersonScore 对这 3 个表进行内部联接,但找不到 persontype。我究竟做错了什么? 楷模: class PersonScore(models.Model):
我有这样的模型 Model Trip: hotel: m2m_field to Hotel flight: m2m_field to Flight Model Hotel: city: f
我有两个 Django 模型: class Product(models.Model): name = models.CharField(max_length=80, null=True)
如果我的模型看起来像: class Publisher(models.Model): pass class Book(models.Model): publisher = models
我已经在 django 1.4 中从主干尝试过 prefetch_related(),但无法预取反向查找。 我的简化模型(每本书有很多价格): class Book(models.Model):
我几乎可以肯定我在这里做错了什么,但我想不通。 在我的应用程序中,项目可以存储在工作区中,如下所示: # models.py class Item(models.Model): name
我正在开发一个 Django 网络应用程序,我正在使用 prefetch_related 和 select_related 方法来最小化单个数据库的访问量,我在我的 User 模型中有一个特定的方法可
我正在使用 DRF 序列化一些相关模型。在我下面的玩具示例中,假设每个作者都可以拥有一百万本书。显然对所有“好”书进行数据库查询,然后对所有“坏”书进行另一个数据库查询是低效的。 这篇文章 [ htt
我想通过 prefetch_related 查询来获取我的模型和所有相关模型,遵循一对多关系,但具有过滤条件。我的目标是使用 prefetch_related 在一个 django 查询中获取我的所有
我正在尝试返回,对于每个 UserProfile,它具有一对多 Subscription,它具有两个 Artist 的外键> 和 UserProfile,每个艺术家有许多 ReleaseGroup,c
我有一个关系简单的模型 class Tasks(models.Model): initiator = models.ForeignKey(User, on_delete = models.CAS
我已经用 GET 实现了一个基于类的 View 获取工资单详情的方法 id .我如何附加 net_allowance在工资单中 object所以JSON看起来像这样: { "employee_
我以前使用过 select_related 和 prefetch_related,效果很好。 我正在处理一个当前项目,由于某种原因,我无法弄清楚为什么我的预取相关查询无法正常工作,因此我收到了很多冗余
我是一名优秀的程序员,十分优秀!