Skip to content

Instantly share code, notes, and snippets.

@baronTommy
Created September 4, 2018 08:53
Show Gist options
  • Save baronTommy/3b36eddf94b5bdcff5582e21e872c6f8 to your computer and use it in GitHub Desktop.
Save baronTommy/3b36eddf94b5bdcff5582e21e872c6f8 to your computer and use it in GitHub Desktop.
Web Storage
---
# Web Storage
---
# local Storage
## 概要
- key-value型
- 単純なデータ保存
- 検索不可
- 永続
## 用途
- アプリの設定データ
- 写真データ
# session Storage
## 概要
- 検索不可
- 一時
## 用途
- ログインID
- 選択項目番号
# IndexdDatabase
## 概要
- NoSql
- 複雑なデータ保存
- 検索可
- 永続
## 用途
- アプリの主要データ
- 非同期
# Cookie
## 概要
- HTTP ヘッダーに自動付与
## 用途
- セッションID
# WebSQL
## 概要
- **非推奨**
- SQL型
- 複雑なデータ保存
- 検索可
- 永続
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment