用同一个浏览器访问同一个域名,数据共享。数据保存在浏览器客户端

一、安装

  1. yarn add koa-cookie

二、不用配置直接使用

//cookie的有效时长
httpOnly:false 设置cookie是否可以在客户端读取 false可以读取,true不能读取

router.get('/',async ctx=>{
    ctx.cookies.set("name","lishe",{
        maxAge:1000*30,   //cookie的有效时长
        // httpOnly:false   //设置cookie是否可以在客户端读取false不能读取 反之可以读取
    })
    console.log(ctx.cookies.get("name"))
    ctx.body = "hello world"
})
const router = require("koa-router")();
router.get('/',async ctx=>{
    ctx.cookies.set("name","lishe",{
        maxAge:1000*30,   //cookie的有效时长
        // httpOnly:false   //设置cookie是否可以在客户端读取false不能读取 反之可以读取
    })
    console.log(ctx.cookies.get("name"))
    ctx.body = "hello world"
})
module.exports = router;