gpt4 book ai didi

Django 缓存 - 删除某些页面的缓存

转载 作者:行者123 更新时间:2023-12-05 00:01:48 29 4
gpt4 key购买 nike

我想在访问该 View 时关闭某些页面的缓存。它适用于简单查询模型对象的页面。

好像什么时候
'django.middleware.cache.FetchFromCacheMiddleware',
启用后,它需要从浏览器中再次“刷新”才能查看最新数据。

有什么办法可以防止这种情况吗?

谢谢你。

最佳答案

https://docs.djangoproject.com/en/dev/topics/cache/#controlling-cache-using-other-headers

If you want to use headers to disable caching altogether, django.views.decorators.cache.never_cache is a view decorator that adds headers to ensure the response won't be cached by browsers or other caches. Example:


from django.views.decorators.cache import never_cache

@never_cache
def myview(request):
# ...

关于Django 缓存 - 删除某些页面的缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8856675/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com