5

如果我要上传图像,除了创建缩略图之外,我还希望 multer s3 保留原件。

换句话说。我只想在第一次转换中更改文件名。

下面的代码运行良好,但问题是 sharp() 修改了原始代码。假设我上传了一个 gif 文件,动画将停止工作。

我试图从原始变换对象中删除变换箭头函数,但这会使代码崩溃,并出现错误dest.on is not a function

我试过删除整个变换对象,但由于 shouldTransform 是真实的,它根本不会上传原件。

我试图用 替换sharp()null但这给了我这个错误Cannot read property 'on' of null

根据文档,我应该能够在 sharp() 位置输入一个字符串,但这也会使代码崩溃。示例:cb(null, "something.jpeg"); 错误:dest.on 不是函数

关于 multer-s3-transform 的文档有点欠缺,所以我现在只是暴力破解。

const awsStorage = multerS3({
    s3,
    bucket: process.env.AWS_BUCKET_NAME,
    shouldTransform: (transformReq, file, cb) => {
        cb(null, /^image/i.test(file.mimetype));
    },
    key: (transformReq, file, cb) => {
        const splitFileName = file.originalname.split('.');
        const fileEnding = splitFileName[splitFileName.length - 1];
        cb(null, `files/${dateNow}.${fileEnding}`);
    },
    transforms: [
        {
            id: 'original',
            key: (transformReq, file, cb) => {
                const splitFileName = file.originalname.split('.');
                const fileEnding = splitFileName[splitFileName.length - 1];
                cb(null, `files/${dateNow}.${fileEnding}`);
            },
            transform: (transformReq, file, cb) => {
                cb(null, sharp()); // This is where I'm struggling
            },
        },
        {
            id: 'thumbnail',
            key: (transformReq, file, cb) => {
                const splitFileName = file.originalname.split('.');
                const fileEnding = splitFileName[splitFileName.length - 1];
                cb(null, `thumbnails/${dateNow}.${fileEnding}`);
            },
            transform: (transformReq, file, cb) => {
                cb(
                    null,
                    sharp()
                        .resize(200, 200)
                        .png()
                );
            },
        },
    ],
});
4

1 回答 1

2

您可以从第一个变换对象(原始)中删除变换块吗?

transform: (transformReq, file, cb) => {
   cb(null, sharp()); // This is where I'm struggling
}

如果您只是想重命名文件,那么关键部分就足够了。您在下面的缩略图上正确使用了Sharp。

于 2020-07-31T16:57:05.537 回答