是否可以使用javascript清除单个页面上的缓存?我知道document.location.reload()会做到这一点。但是可以不刷新页面就完成吗?

最佳答案

您可以通过发送适当的 header 或在HTML上使用以下元标记来告诉它不要缓存页面:

<meta http-equiv='cache-control' content='no-cache'> //clear cache
<meta http-equiv='expires' content='0'>//clear cache with some expire time
<meta http-equiv='pragma' content='no-cache'> // no Cache

关于javascript - 清除页面上的缓存,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32034792/

10-13 09:15