1.1.6 • Published 3 years ago

think-session v1.1.6

Weekly downloads
174
License
-
Repository
github
Last release
3 years ago

think-session

Build Status Coverage Status npm

Session for ThinkJS 3.x.

Add session method for controller/context.

config

config file src/config/adapter.js, add options:

const cookie = require('think-session-cookie');
exports.session = {
  type: 'cookie',
  common: {
    maxAge: 24 * 3600 * 1000, // 1 day 
  },
  cookie: {
    handle: cookie
  }
}

session method

  • this.session() get all session data
  • this.session(name) get session data with name
  • this.session(name, value) set session data
  • this.session(null) delete all session data
  • this.session(name, undefined, options) get session data with options

For each ctx, session is only instantiated once.