在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读取不一致的莫名问题
},
})
原创2022年2月6日...小于 1 分钟