在Chrome的桌面,我有选项在开发工具完全禁用缓存时,开发工具被打开,我有选项手动做一个硬加载时,长时间点击重新加载按钮(与开发工具打开)。
Chrome for Android有这样的技术吗?我没有找到任何背景。 当我想强迫浏览器下载一些javascript或css文件,而不是使用一个缓存时,我该怎么做?
在Chrome的桌面,我有选项在开发工具完全禁用缓存时,开发工具被打开,我有选项手动做一个硬加载时,长时间点击重新加载按钮(与开发工具打开)。
Chrome for Android有这样的技术吗?我没有找到任何背景。 当我想强迫浏览器下载一些javascript或css文件,而不是使用一个缓存时,我该怎么做?
当前回答
如何重置一个给定的URL /网站在Chrome移动android上的所有数据:
1 -打开Chrome菜单,点击“i (info)”图标
2 -点击“站点设置”
3 -点击垃圾桶图标
就是这样,即使是该URL最深入的服务工作者现在也将死亡。
其他回答
这是另一个简单的解决方案,当其他人失败时,它可能奏效:
今天,当缓存问题是缓存的CSS文件时,一个相当简单的开发人员端解决方案对我来说是有效的。简而言之:创建一个临时html文件副本,并浏览到它来更新CSS缓存。
这个技巧可以刷新CSS文件,至少在Android的蓝色全球图标默认浏览器中(但很可能是它的孪生兄弟,官方Chrome浏览器,以及我们在“智能”手机上遇到的具有积极缓存趋势的其他浏览器)。
细节:
At first I tried some of the fairly simple solutions shared here, but without success (for example clearing the recent history of the specific site, but not months and months of it). My latest CSS would however not be applied apon refresh. And that even though I had already employed the version-number-trick in the CSS file-call in the head section of the html which had helped me avoid these pesky aggressive cachings in the past. (example: link rel="stylesheet" href="style.css?v=001" where you upgrade this pseudo-version number every time you make a change to a CSS file, e.g. 001, 002, 003, 004... (should be done in every html file of the site))
这一次(2019年8月)CSS文件版本号更新不再足够,这里提到的一些更简单的措施对我也不起作用,或者我甚至无法访问其中的一些(在借来的安卓手机上)。
最后,我尝试了一些相对简单的方法,最终解决了这个问题:
我复制了站点的index.html文件,给它一个不同的名字(indexcopy.html),上传它,在Android设备上浏览它,然后浏览回原始页面,刷新它(用地址栏左边的刷新按钮),voilà:这一次,index.html的刷新终于起作用了。
Explanation: The latest CSS file version was now finally applied on Android when refreshing the html page in question because the cached copy of the CSS file had now been updated when the CSS file was called from a differently named temporary html page that did not exist anywhere in the browser history and that I could delete again afterwards. The aggressive caching apparently ignored the CSS URL and went instead by the HTML URL, even though it was the CSS file that needed to be updated in the cache.
编辑:此方法已弃用在谷歌Chrome浏览器,将不再工作。
最初的回答:
我能够清除缓存(包括后续xhr)使用chrome://net-internals
然后点击右上方的小箭头
从菜单中选择“清除缓存”。
如何重置一个给定的URL /网站在Chrome移动android上的所有数据:
1 -打开Chrome菜单,点击“i (info)”图标
2 -点击“站点设置”
3 -点击垃圾桶图标
就是这样,即使是该URL最深入的服务工作者现在也将死亡。
像Ctrl+Shift+R这样的快捷键在Android上也适用,你只需要一个能够发送这些键的键盘。我用的是黑客键盘 发送Ctrl+Shift+R,这在我的手机上很难重新加载。
启动Chrome Android应用程序 点击菜单查看更多选项。 从选项列表中选择“设置”。 向下滚动并点击“站点设置”选项卡。 在“站点设置”中打开“数据存储”选项卡。 点击要删除存储的站点URL。 点击“清除&重置”命令按钮。 刷新网站页面。