摘要: Service Worker 在2014年,W3C公布了service worker的草案,service worker提供了很多新的能力,使得web app拥有与native app相同的离线体验、消息推送体验。 service worker是一段脚本,与web worker一样,也是在后台运行。 阅读全文
posted @ 2023-04-29 20:30 TangTaue 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 单例模式 一个类只有一个实例,并提供一个访问它的全局访问点。 1 class LoginForm { 2 constructor() { 3 this.state = 'hide' 4 } 5 show() { 6 if (this.state 'show') { 7 alert('已经显示') 8 阅读全文
posted @ 2023-04-29 19:35 TangTaue 阅读(9) 评论(0) 推荐(0) 编辑