js在浏览器中对cookie进行增删改查

Cookie格式

=; ; 

eg:
id=a3fWa; Expires=Wed, 21 Oct 2015 07:28:00 GMT; Secure; HttpOnly

属性

属性名 说明 默认值 作用域
Expires 到期时间:UTC - -
Max-Age 到期时间:秒 优先级高于Expires - -
domain 所属域名 当前域名 默认当前域名, 指定值后是当前域名和子域名
path 生效的路径 当前网址 当前路径及其子路径
HttpOnly 无法通过 JavaScript 脚本拿到 - -
Secure 只有在加密协议 HTTPS 下生效 - -

特殊说明:

  1. 如果不添加过期时间,cookie 在浏览器关闭时删除
  2. 两个网址只要域名相同端口相同,就可以共享 Cookie
  3. 使用document.cookie无法读取到与HTTPOnly属性的cookie
  4. 只能读取到cookie的键-值,没有办法读取属性的值

Cookie读写操作

如果本地html文件用浏览器打开页面会报错

A cookie associated with a cross-site resource at  was set without the `SameSite` attribute. 
A future release of Chrome will only deliver cookies with cross-site requests 
if they are set with `SameSite=None` and `Secure`.

可以使用Flask 搭建测试环境

# -*- coding: utf-8 -*-
from flask import Flask, send_file

app = Flask(__name__)


@app.route("/")
def get_info():
    return send_file("templates/index.html")


if __name__ == '__main__':
    app.run(debug=True)

JavaScript读写Cookie

// 创建Cookie 可以连续赋值,不会被覆盖
document.cookie="username=Tom";
document.cookie="age=12";

// 修改Cookie
document.cookie="username=Jack";

// 获取Cookie
console.log(document.cookie);
// age=12; username=Jack

// 删除  设置 expires 参数为以前的时间
document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 GMT";

可以自己封装函数处理cookie
例如:https://www.runoob.com/js/js-cookies.html

也可以使用插件读取
js-cookie: https://www.npmjs.com/package/js-cookie

参考

  1. https://segmentfault.com/a/1190000016372516
  2. 阮一峰 JavaScript 教程/浏览器模型/Cookie

你可能感兴趣的:(javascript)