midway
midway copied to clipboard
上传oss0kb
@Post('/upload')
async upload(@Files() files) {
const result = await Promise.all(
files.map(file =>
this.ossService.put(`midway/${file.filename}`, file.data)
)
);
return result.map(file => file.url);
}
部分文件使用stream上传为0kb,使用file正常
部分文件。。。是什么文件?

部分文件。。。是什么文件?
这个图0kb 有的图可以,有的图不行, 是图片原因吗
问题在我本机已经复现了,我调试修复一下
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.