填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

UnrecoverableStateEvent

An event emitted when the version of the app used by the service worker to serve this client is in a broken state that cannot be recovered from and a full page reload is required.

查看"说明"...

      
      interface UnrecoverableStateEvent {
  type: 'UNRECOVERABLE_STATE'
  reason: string
}
    

参见

说明

For example, the service worker may not be able to retrieve a required resource, neither from the cache nor from the server. This could happen if a new version is deployed to the server and the service worker cache has been partially cleaned by the browser, removing some files of a previous app version but not all.

属性

属性说明
type: 'UNRECOVERABLE_STATE'
reason: string