JSON WEB TOKEN 生成令牌,扩展 egg 中的 app 对象,使用 app.generateToken() 生成 token
const jwt = require('jsonwebtoken');
module.exports = {
/**
* 生成 Token
* @param { Object } params
*/
generateToken( params={} ) {
return jwt.sign(params, this.config.jwt.secret, { expiresIn: this.config.jwt.expiresIn })
}
}