我有以下型号:

class Publisher(models.Model):
    name = models.CharField(max_length=30)


class Book(models.Model):
    title = models.CharField(max_length=100)
    publisher = models.ForeignKey(Publisher)

在我的views.py中,当我想显示出版商页面时,我也想显示他们的书,所以我通常会这样做:
publisher = Publisher.objects.prefetch_related('book_set').filter(pk=id).first()

然后,经过一些处理,我也对书籍做了一些工作
for book in publisher.book_set.all():
    foo()

这很好用,但我有一个问题。如果在查询和 for 循环之间添加了一本书,那么 publisher.book_set.all() 将不会有新添加的书,因为它是预取的。

有没有办法更新发布者对象?

最佳答案

您可以删除实例上的整个预取缓存:

if hasattr(publisher, '_prefetched_objects_cache'):
    del publisher._prefetched_objects_cache

如果您只想删除特定的预取关系:
if hasattr(publisher, '_prefetched_objects_cache'):
    publisher._prefetched_objects_cache.pop('book_set', None)

关于python - Django,在 prefetch_related 之后更新对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48109318/

10-12 19:24