0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

154.Storageオブジェクト

0
Last updated at Posted at 2022-09-12

ブラウザのストレージについて

localStrage

ブラウザの保存領域にデータを格納するためのオブジェクトのこと

ブラウザにキーバリューを保持しておきたい

1.localStrage.setItem(キー,バリュー)

localStrage.setItem('key','value');

確認方法
スクリーンショット 2022-09-12 17.32.53.png
2.Applications→Localstorage→chrome~に保存されました。

ローカルストレージを確認

1.localStrage.getItem(キー)

localStrage.setItem('key');

使用例

例えば、お気に入りやカートなど、ブラウザにキャッシュしたいものをおくといいかも
https://www.globalgate.co.jp/blog/how-to-use-localstrage

0
0
1

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?