美文网首页KOA
9.1KOA Cookies

9.1KOA Cookies

作者: 帶頭二哥 | 来源:发表于2020-01-06 02:07 被阅读0次

Cookies

写入cookies

const main = async (ctx,next) {
    ctx.cookies.set(
      'cid', 
      'hello world',
      {
        domain: 'localhost',                    // 写cookie所在的域名
        path: '/index',                         // 写cookie所在的路径
        maxAge: 10 * 60 * 1000,                 // cookie有效时长
        expires: new Date('2017-02-15'),        // cookie失效时间
        httpOnly: false,                        // 是否只用于http请求中获取
        overwrite: false                        // 是否允许重写
      }
    )
}

读取 cookies

const main = async (ctx,next) {
    let cid = ctx.cookies.get('cid')
    console.log('cid')
}

相关文章

网友评论

    本文标题:9.1KOA Cookies

    本文链接:https://www.haomeiwen.com/subject/ftdhactx.html