Skip to content

thinkjs/think-session

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.