如何在websocket上使用FileInterceptor? (NestJs)

问题描述 投票:0回答:1

我想在 websocket 上使用它,我该怎么做?

@UseInterceptors(
        FileInterceptor('photo', {
          dest: '../uploads/profilePictures',
          limits: { fileSize: byte * 10 },
        }),
      )
typescript express websocket nestjs multer
1个回答
0
投票

无法将 FileInterceptor 与 websocket 一起使用。 相反,您可以在前端处理文件,然后在消息正文中发送文件缓冲区。

© www.soinside.com 2019 - 2024. All rights reserved.