所有浏览器都有本地存储吗?

问题描述 投票:2回答:1

我想知道当我尝试使用它时是否有必要检查本地存储是否存在。

即,我将此作为检查:

  if (global.localStorage) {
    global.localStorage.setItem('layout', JSON.stringify({
      [key]: value
    }));
  }

或者我可以在没有此检查的情况下使用localStorage吗?

html5 local-storage
1个回答
5
投票

Mozilla在这里保留了一个桌面和移动浏览器支持表:https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.