Cookie 的使用
1、Cookie 简介
2、Egg.js 中 Cookie 的设置和获取
ctx.cookies.set(key, value, options)this.ctx.cookies.set('name','zhangsan');ctx.cookies.get(key, options)this.ctx.cookies.get('name')this.ctx.cookies.set('name',null);3、Egg.js 中 Cookie 参数 options
4、Egg.js 中设置中文的 Cookie值
Last updated