作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想像这样在我的 nestJs 应用程序中使用 multer:
@Post()
@UseInterceptors(
FileInterceptor('file', {
storage: diskStorage({
destination: './files',
}),
}),
)
async upload(@Request() req, @Query() query: any, @UploadedFile() file) {
console.log(file);
}
但是我的 IDE (vscode) 一直说:找不到名称“diskStorage”并且没有编译。我还在指定的模块 (FeatureModule) 上注册了 MulterModule。
我可以用
@UseInterceptors(
FileInterceptor('file', { dest: '/data-path'}),
)
但我想更改例如文件名。为此,我需要 diskStorage 函数
我该怎么做才能解决这个问题?
最佳答案
解决方案如@JayMcDoniel 所述必须进行额外的导入。
从 'multer' 导入 { diskStorage };
在这个例子的帮助下,我能够重新创建并再次解决整个问题。 https://github.com/TannerGabriel/Blog/tree/091cbf99bc9409629e1ab717ca8ec405c421d6d4/nest-file-uploading
关于nestjs - 在 nestJs 多文件上传中找不到 diskStorage(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63925257/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!