美文网首页
19|离线应用和客户端存储

19|离线应用和客户端存储

作者: 井润 | 来源:发表于2020-05-18 22:38 被阅读0次

01|离线监测

// 离线检测属性
navigator.onLine // true or false
// 离线事件
online,offline

02|应用缓存

/*
描述文件: offline.manifest,列出要下载和缓存的资源
文件扩展名以前推荐manifest,现在推荐用appcache
*/
CACHE MANIFEST
#Comment

file.js
file.css

// 与html文档关联
<html manifest="/offline.manifest">

03|数据存储

  • cookie
  • localStorage
  • sessionStorage
  • indexedDB

相关文章

网友评论

      本文标题:19|离线应用和客户端存储

      本文链接:https://www.haomeiwen.com/subject/cetlohtx.html