设为首页收藏本站language→→ 语言切换

鸿鹄论坛

 找回密码
 论坛注册

QQ登录

先注册再绑定QQ

查看: 1404|回复: 0
收起左侧

[文档] KoaHub平台基于Node.js开发的Koa的get/set session插件代码详情

[复制链接]
发表于 2016-11-7 18:02:46 | 显示全部楼层 |阅读模式
koa-session2

Middleware for Koa2 to get/set session use with custom stores such as Redis or mongodb with Babel

koa-session2
Middleware for Koa2 to get/set session use with custom stores such as Redis or mongodb with Babel
If you are not using babel in your projects, maybe you can try this version without babel.
Install
  1. npm install koa-session2
复制代码

Usage
  1. import Koa from "koa";
  2. import session from "koa-session2";

  3. const app = new Koa();

  4. app.use(session({
  5.     key: "SESSIONID",   //default "koa:sess"
  6. }));
复制代码

Custom Stores
Store.js
  1. import Redis from "ioredis";
  2. import {Store} from "koa-session2";

  3. export default class RedisStore extends Store {
  4.     constructor() {
  5.         super();
  6.         this.redis = new Redis();
  7.     }

  8.     async get(sid) {
  9.         return await this.redis.get(`SESSION:${sid}`);
  10.     }

  11.     async set(session, opts) {
  12.         if(!opts.sid) {
  13.             opts.sid = this.getID(24);
  14.         }
  15.         await this.redis.set(`SESSION:${opts.sid}`, session);
  16.         return opts.sid;
  17.     }

  18.     async destroy(sid) {
  19.         return await this.redis.del(`SESSION:${sid}`);
  20.     }
  21. }
复制代码

main.js
  1. import Koa from "koa";
  2. import session from "koa-session2";
  3. import Store from "./Store.js";

  4. const app = new Koa();

  5. app.use(session({
  6.     store: new Store()
  7. }));

  8. app.use(ctx => {
  9.     let user = ctx.session.user;

  10.     ctx.session.view = "index";
  11. });
复制代码

Options
Most options based on cookies
  • key: a string for store session id in cookie
  • store: a class for custom store (extend {Store}, func: #get(sid), #set(session, opts), #destory(sid))
  • maxAge: a number representing the milliseconds from Date.now() for expiry
  • expires: a Date object indicating the cookie's expiration date (expires at the end of session by default).
  • path: a string indicating the path of the cookie (/ by default).
  • domain: a string indicating the domain of the cookie (no default).
  • secure: a boolean indicating whether the cookie is only to be sent over HTTPS (false by default for HTTP, true by default for HTTPS).
  • httpOnly: a boolean indicating whether the cookie is only to be sent over HTTP(S), and not made available to client JavaScript (true by default).
  • signed: a boolean indicating whether the cookie is to be signed (false by default). If this is true, another cookie of the same name with the .sigsuffix appended will also be sent, with a 27-byte url-safe base64 SHA1 value representing the hash of cookie-name=cookie-value against the first Keygrip key. This signature key is used to detect tampering the next time a cookie is received.
  • overwrite: a boolean indicating whether to overwrite previously set cookies of the same name (false by default). If this is true, all cookies set during the same request with the same name (regardless of path or domain) are filtered out of the Set-Cookie header when setting this cookie.

License
MIT

wemall 开源微商城 ,微信商城,商城源码,三级分销,微生鲜,微水果,微外卖,微订餐---专业的o2o系统






您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-1-25 09:09 , Processed in 0.057568 second(s), 10 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表