LoginSignup
5
4

More than 5 years have passed since last update.

LocalStorageの参照エラー

Last updated at Posted at 2018-05-14

LocalStorageを使う際、特定のディレクトリへのアクセス権がないとアクセスが拒否され、参照エラーになってしまう。

IE11でLocalStorageが使えない時の対処法

これ以外にプライベートブラウズで起きる場合もあるよう。
そのため、LocalStorageを使う場合はtry...catchを用いて事前に判定する必要がある。

function hasLocalStorage() {
  var checkKey = 'haslocalstorage';
  try {
    window.localStorage.setItem(checkKey, 1);
    window.localStorage.getItem(checkKey);
    return true;
  } catch(e) {
    return false;
  }
}
5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4