I know it’s due to caching, but doesn’t it mean that when the server’s HTML changes, the browser will go to the server to download new HTML?
给我你的怀抱2017-07-07 10:36:56
The browser caches requests and files. (k-v)
For example, if you visit: url: http://caiyongji.com/index.html
Browser cache:
KEY VALUE
http://caiyongji.com/index.html index.html
The above is the understanding in the narrow sense, which actually also includes pictures/cookies, etc...
ringa_lee2017-07-07 10:36:56
If the browser cache clearing access is unsuccessful, you can try deleting the cache files in the work directory in Tomact, then restart and try again.
扔个三星炸死你2017-07-07 10:36:56
Not necessarily, you need to set Cache-Control: no-cache in the html header
某草草2017-07-07 10:36:56
1. Server cache
2. Browser cache
To clear the browser cache, you can use Ctrl+F5 to force refresh.