【发布时间】:2018-02-20 19:39:06
【问题描述】:
我想使用 django 清除用户浏览器缓存。
我尝试过的
我的功能很简单
from django.core.cache import cache
def clear(request):
cache.clear()
return Httpresponse('cleared')
但它不会清除缓存
有没有更好的选择
【问题讨论】:
-
这里有一个根本的误解:
django.core.cache不是浏览器缓存。此外,您不能以这种方式“清除 [the] browser cache”。 -
哦.. django 中有什么方法可以清除浏览器缓存@hop
标签: python django python-3.x caching