简述Cookie Session localStorage sessionStorage

Cookie localStorage sessionStorage的异同

以下来自:详说 Cookie, LocalStorage 与 SessionStorage

特性 Cookie localStorage sessionStorage
应用 身份标识 存储数据 存储数据
数据的生命周期 (一般由服务器生成)可自由设置失效时间。 数据持久化 存在于一次session会话,关闭页面后销毁
数据结构 键值对的集合 键值对的集合 键值对的集合
存放数据 每条4KB,一般50条(IE6 20),客户端最多300条 一般为5MB 同(localStorage)
存放位置 客户端 客户端 客户端
作用域 (可设置)本域和任何父域 在所有同源窗口中共享 当前会话窗口
与服务器端通信 携带在HTTP头中参与通信,影响请求响应时间 仅存在于客户端(即浏览器)中,不参与通信 同(localStorage)
数据提交 被动(全部提交) 主动(选择性) 主动(选择性)
安全性 明文(不安全) 明文(不安全) 明文(不安全)

1、Cookie

1、Cookie是在RFC2109里初次被提及,是为了辨别用户信息而存储在客户端的数据。

2、每个客户端最多保持300个Cookie,每个域名下一般为50个(IE 6仅20个)

3、每个Cookie最多存储最多4KB

4、Cookie的信息每次发起请求都会随请求头提交给服务器
5、Cookies 使用不同的源定义方式。一个页面可以为本域和任何父域设置cookie,只要是父域不是公共后缀(public suffix)即可。Firefox 和 Chrome 使用 Public Suffix List 决定一个域是否是一个公共后缀(public suffix)。Internet Explorer使用其自己的内部方法来确定域是否是公共后缀。不管使用哪个协议(HTTP/HTTPS)或端口号,浏览器都允许给定的域以及其任何子域名(sub-domains) 访问 cookie。设置 cookie 时,你可以使用Domain,Path,Secure,和Http-Only标记来限定其访问性。读取 cookie 时,不会知晓它的出处。 即使您仅使用安全的https连接,您看到的任何cookie都可能使用不安全的连接进行设置。

链接:跨源网络访问

1、客户端设置Cookie(HTTP响应中)

Set-cookie:name='...name';expires='...date';path='...path';domain='...domain'

支持Cookie的浏览器将创建Cookie文件并保存(也可能是写入内存中)。用户

每次发起请求时浏览器根据条件过滤(expires path)后加入请求头响应:

请求头:Cookie: name='...name';Path='.../path'

2、Node中设置Cookie(response中提供了原生方法):

res.cookie(name, value [, options]);

name: 类型为String

value: String或Object(自动序列化,JSON.stringify(obj))

Option:Object

Option包含:

domain:String, //有效域名,默认网站域名

expires:Date, //过期时间,没有设置或为0,浏览器关闭后清除(当前session有效)

httpOnly: Boolean, //只能被WEB server访问

maxAge:String, // 类似expires 过期时间

path:String,//有效路径,默认'/'

secure:Boolean, //只能被https使用,默认false

singed:Boolean //使用签名,默认false(express ,cookie-parse ->> req.secret)

3、Koa中使用Cookie

ctx.cookies.get(name, [, options]) //获取

ctx.cookies.set(name, value,  [options]) //设置

image

2、Session

Session(主要用来管理会话)是一种概念,表示用户从进入到离开网络应用这段时间内产生的动作以及上下文


1、HTTP中的Session

Cookie每次请求都随着HTTP发送给服务器,给每个Cookie一个唯一的ID用来记录用户

2、Session的步骤

1)生成SessionId

2)SessionId写入内存(一旦服务器断电或重启就会丢失,--redis持久化...)

3)将带有SessionId的Cookie发送给客户端

3、Koa中使用Session (koa-session)

const Koa = require('koa')

const session = require('koa-session')

const app = new Koa()

...

app.keys = ['secret key']

const CONFIG = {

  key: 'login', /** (string) cookie key (default is koa:sess) */

  /** (number || 'session') maxAge in ms (default is 1 days) */

  /** 'session' will result in a cookie that expires when session/browser is closed */

  /** Warning: If a session cookie is stolen, this cookie will never expire */

  maxAge: 86400000, // (number) maxAge in ms (default is 1 days)

  overwrite: true, /** (boolean) can overwrite or not (default true) */

  httpOnly: true, /** (boolean) httpOnly or not (default true) */

  signed: true, /** (boolean) signed or not (default true) */

  rolling: false, /** (boolean) Force a session identifier cookie to be set on every response. The expiration is reset to the original maxAge, resetting the expiration countdown. (default is false) */

  renew: false, /** (boolean) renew session when session is nearly expired, so we can always keep user logged in. (default is false)*/

};

app.use(session(CONFIG, app))

....

router.get('/login', (ctx, next) => {

    ctx.session.login = true

    ...

})

...

3、localStorage 与 sessionStorage (HTML5 Web Storage)

HTML web storage; better than cookies.

What is HTML Web Storage?

With web storage, web applications can store data locally within the user's browser.

Before HTML5, application data had to be stored in cookies, included in every server request. Web storage is more secure, and large amounts of data can be stored locally, without affecting website performance.

Unlike cookies, the storage limit is far larger (at least 5MB) and information is never transferred to the server.

Web storage is per origin (per domain and protocol). All pages, from one origin, can store and access the same data.

Browser Support

The numbers in the table specify the first browser version that fully supports Web Storage.

IE Firefox Chrome Safari Opera
localStorage 8.0 3.5 4.0 4.0 11.5
sessionStorage 8.0 2.0 5.0 4.0 11.5
HTML Web Storage Objects

HTML web storage provides two objects for storing data on the client:

window.localStorage - stores data with no expiration date
window.sessionStorage - stores data for one session (data is lost when the browser tab is closed)
Before using web storage, check browser support for localStorage and sessionStorage:

if (typeof(Storage) !== "undefined") {
    // Code for localStorage/sessionStorage.
} else {
    // Sorry! No Web Storage support..
}
The localStorage Object

The localStorage object stores the data with no expiration date. The data will not be deleted when the browser is closed, and will be available the next day, week, or year.

// Store
localStorage.setItem("lastname", "Smith");
// Retrieve
document.getElementById("result").innerHTML = localStorage.getItem("lastname");
The sessionStorage Object

The sessionStorage object is equal to the localStorage object, except that it stores the data for only one session. The data is deleted when the user closes the specific browser tab.

The following example counts the number of times a user has clicked a button, in the current session:

if (sessionStorage.clickcount) {
    sessionStorage.clickcount = Number(sessionStorage.clickcount) + 1;
} else {
    sessionStorage.clickcount = 1;
}
document.getElementById("result").innerHTML = "You have clicked the button " +
sessionStorage.clickcount + " time(s) in this session.";

Web Storage带来的好处

以下来自:
请描述一下 cookies,sessionStorage 和 localStorage 的区别
减少网络流量:一旦数据保存在本地后,就可以避免再向服务器请求数据,因此减少不必要的数据请求,减少数据在浏览器和服务器间不必要地来回传递。
快速显示数据:性能好,从本地读数据比通过网络从服务器获得数据快得多,本地数据可以即时获得。再加上网页本身也可以有缓存,因此整个页面和数据都在本地的话,可以立即显示。
临时存储:很多时候数据只需要在用户浏览一组页面期间使用,关闭窗口后数据就可以丢弃了,这种情况使用sessionStorage非常方便。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容