How to stop chrome from caching

2019-01-16 17:59发布

I need to force the browser to reload the previous page from the server when the user presses the back button.

I've added the following to my response headers:

Cache-Control: no-cache, must-revalidate
Expires: -1

This seems to work for most browsers but not for Google Chrome that insists on returning the cached results.

So does anyone know how I force the browser to get the page from the server when the user presses the back button?

Thank you.

2条回答
等我变得足够好
2楼-- · 2019-01-16 18:38

as per this bug report in chromium repo, users find that using no-store instead of no-cache will fix it in chrome.

查看更多
女痞
3楼-- · 2019-01-16 18:49

This is not proper, but perhaps you could use the Javascript history object to determine if the current page is the last page in the list? If not, the back button was pressed.

See this reference: http://www.exforsys.com/tutorials/javascript/javascript-history-object-properties-and-methods.html

The real solution of course is to structure your application in such a way that usage of back/forward buttons actually work the way they are supposed to.

查看更多
登录 后发表回答