下载
首先用npm下载egg-jwt
npm init egg-jwt --save
配置
在plugin.js
中
jwt: {
enable: true,
package: 'egg-jwt',
}
config.default.js
中
config.jwt = {
//jwt配置项
secret: "123456"
}
生成Token
controlle
r 中的 login.js
中
const {
ctx,app} = this;
const token = app.jwt.sign({
'username': username, //需要存储的 token 数据
//......
}, app.config.jwt.secret);
console.log(token)
ctx.set({
'authorization':