Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发可以在 django 中离线工作的简单网页。在这个项目中,我使用应用缓存来存储静态文件和本地存储来保存字典。但是我就遇到过这个问题。即,我使用 GET 方法,我的 url 看起来像:
http://localhost:8000/search/?key=aaaa
但应用程序缓存只保留“字符串”url,因此每个新查询都需要与服务器连接。
你知道如何解决它吗?
如果我没记错的话,HTML5 Application Cache 只能预下载清单中的文件,所以它不能用于缓存搜索结果之类的东西。
我建议将搜索结果存储到本地存储(我假设您已经在使用 AJAX 请求进行搜索):