NestJS

187次阅读
没有评论

Fastify上传文件

@nestjs/common包中的UploadedFile只能用于express的适配器,而用来fastify的,那么需要从fastify对应的包导出。

Fastify 托管静态文件、图片

app.useStaticAssets({
    root: join(__dirname, '..', 'uploads'),
    prefix: '/public',
  });

注意点:publicpublic/ 都会报错。

模型定义与参数验证合并

正文完
 0
wujingquan
版权声明:本站原创文章,由 wujingquan 于2023-12-15发表,共计214字。
转载说明:Unless otherwise specified, all articles are published by cc-4.0 protocol. Please indicate the source of reprint.
评论(没有评论)