是否可以缓存 http 资源而忽略客户端的查询字符串?
Is it possible to cache http resources ignoring query strings on client side?
我很好奇客户端(例如浏览器)是否可以缓存 Web 内容(例如 HTML 文件)而忽略查询字符串。
例如,浏览器请求 https://a.com/a.html?query=1, then requests https://a.com/a.html?query=2。浏览器是否可以忽略“?query=2”并从缓存中获取结果?
我相信你可以做到这一点,如果你写一个Service Worker that takes advantage of the Cache API。
我很好奇客户端(例如浏览器)是否可以缓存 Web 内容(例如 HTML 文件)而忽略查询字符串。 例如,浏览器请求 https://a.com/a.html?query=1, then requests https://a.com/a.html?query=2。浏览器是否可以忽略“?query=2”并从缓存中获取结果?
我相信你可以做到这一点,如果你写一个Service Worker that takes advantage of the Cache API。