作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个场景,一个包含多个投标的项目模型。
Class Project(models.Model):
user = models.ForeignKey()
Class Bid(models.Model):
project = models.ForeignKey(Project, related_name='bids')
Project.objects.filter(whatever condition).prefetch_related(
Prefetch('bids', queryset=Bid.objects.all())
)
queryset=Bid.objects.filter(project=project?)...
最佳答案
Project.objects.filter(whatever condition).prefetch_related(
Prefetch('bids', queryset=Bid.objects.all())
)
Prefetch
在这种情况下。你可以这样做:
Project.objects.filter(whatever condition).prefetch_related('bids')
Prefetch
如果要过滤查询集,则很有用,例如:
Project.objects.filter(whatever condition).prefetch_related(
Prefetch('winning_bids', queryset=Bid.objects.filter(status='WINNING'))
)
关于django - 如何在 django 中基于父查询集创建预取查询集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49003454/
我是一名优秀的程序员,十分优秀!