文件名称:koa-cookie:用于Koa的Cookie解析器中间件
文件大小:2KB
文件格式:ZIP
更新时间:2024-05-31 22:57:22
JavaScript
饼干 用于Koa的Cookie解析器中间件。 也可以与一起使用。 安装 npm install koa - cookie -- save 例子 import Koa from 'koa' ; import cookie from 'koa-cookie' ; const app = Koa ( ) ; app . use ( cookie ( ) ) ; app . use ( async function ( ctx , next ) { const cookies = ctx . cookie ; /* if cookies sent are of the form: 'name=abc; age=20; token = xyz;' Then ctx.cookie is an object of the form: { name: 'abc'
【文件预览】:
koa-cookie-master
----README.md(1KB)
----package.json(600B)
----index.js(1KB)