记录在Nest.js的Fastify框架下使用session的坑
原创2022年2月6日...小于 1 分钟
记录在Nest.js的Fastify框架下使用session的坑
在Nest.js的Fastify框架中使用session一般要安装使用fastify-secure-session
在main.ts中注册时要注意
import secureSession from 'fastify-secure-session';
app.register(secureSession, {
secret: 'averylogphrasebiggerthanthirtytwochars',
salt: 'mq9hDxBVDbspDR6n',
cookie: {
path: '/'//一定不要忘了写该参数,否则会导致后端session读取不一致的莫名问题
},
})
之后就可使用Session,例如:
@Get('')
async getuserid(@Session() session: Record<string, any>) {
let userid: number = session.get("userdata")
return {userid};
}
其中@Session()装饰器在@nestjs/common
中引入:
import { Session } from '@nestjs/common';
也可以通过Request访问session
let userid: number = req.session.get("userdata");
其中@Request()修饰器也在@nestjs/common
中引入。