Nest.js基于Fastify框架上传文件功能实现
原创2022年2月6日...小于 1 分钟
Nest.js基于Fastify框架上传文件功能实现
相关信息
本文主要记录在Nestjs中基于Fastify框架实现的图片/文件上传功能
首先安装 fastify-multipart
npm install --save fastify-multipart
安装完成后在 main.ts 中引入
import fastifyMutipart from 'fastify-multipart'
async function bootstrap() {
const app = await NestFactory.create<NestFastifyApplication>(AppModule, new FastifyAdapter());
app.register(fastifyMutipart, {
addToBody: true
})
}
在相应的Controller层中写一个POST方法,例如:
@Post('upload')
async edit(@Req() req) {
return this.Service.upload(req.body)
}
在Service中实现upload方法
import { join } from 'path/posix';
async upload(multipart) {
let time = new Date().getTime();
let filename = time+"_"+multipart['editormd-image-file'][0].filename;
let data = multipart['editormd-image-file'][0].data
//let encoding = multipart['editormd-image-file'][0].encoding
//文件上传路径
let path = join(__dirname, '../static/upload/');
const writerStream = fs.createWriteStream(
path + filename
);
writerStream.write(data);
await writerStream.end();
return {
success: 1,
message: "success",
url: "/upload/" + filename //此处为返回给前端的文件路径,前端可以通过此URL访问到文件
}
}
upload函数没有严格遵循typescript来写,自己稍微改动即可
这样就实现了在Nestjs基于Fastify框架的文件上传功能