gpt4 book ai didi

javascript - Multer 前端的自定义文件名

转载 作者:行者123 更新时间:2023-12-02 23:43:04 27 4
gpt4 key购买 nike

我正在使用 FormData 上传文件并使用 Multer 在服务器端接收该文件。一切都按预期工作,除了因为我在前端使用 FileSystem API ( https://developer.mozilla.org/en-US/docs/Web/API/DataTransferItem/webkitGetAsEntry ),所以我上传的文件来自子目录。 Multer 似乎只看到文件名,即使我在将文件附加到表单数据时显式设置文件别名( https://developer.mozilla.org/en-US/docs/Web/API/FormData/append )。 Multer 似乎也先于我的请求处理程序的其余部分执行其逻辑,并且看不到我在主体上设置的参数。如何让 multer 查看完整路径?

这是我当前设置的简化版本:

Client(别名代表带路径的全名,file.name是FileSystem API自动设置的基本名称):

function upload(file, alias) {
let url = window.location.origin + '/upload';
let xhr = new XMLHttpRequest();
let formData = new FormData();
xhr.open('POST', url, true);

return new Promise(function (resolve, reject) {

xhr.addEventListener('readystatechange', function(e) {
if (xhr.readyState == 4 && xhr.status == 200) {
resolve(file.name);
}
else if (xhr.readyState == 4 && xhr.status != 200) {
reject(file.name);
}
})

formData.append('file', file, alias || file.name); // this should in theory replace filename, but doesn't
formData.append('alias', alias || file.name); // an extra field that I can't see in multer function at all
xhr.send(formData);
});
}

服务器:

const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, 'uploads/');
},
filename: function (req, file, cb) {
// neither req nor file seems to contain any hint of the alias here
cb(null, file.originalname);
}
});
const upload = multer({storage: storage});
const bodyParser = require('body-parser');
app.use(bodyParser.json());

app.post('/upload', upload.single('file'), function (req, res, next) {
// by this time the file seems to already be on disk with whatever name multer picked
if (req.file) {
res.status(200).end();
} else {
res.status(500).end();
}
});

最佳答案

为了使其正常工作,请在配置 multer 时使用 preservePath 选项。以下起作用:

const upload = multer({storage: storage, preservePath: true});

但是,需要注意的是,multer不会创建目录或子目录。这些必须事先创建。 (我也测试过,如果目录已创建且为空,则上传成功,但如果目录不存在,则上传失败)。

在他们的readme中, 他们说:“注意:当提供目标作为函数时,您负责创建目录。当传递字符串时,multer 将确保为您创建目录。”

该注释的后续内容是:“您也负责创建任何子目录”。

上传文件的相对路径可以在originalname属性中访问。所以,后端看起来像这样:(正如你所拥有的,但带有更新的注释)

const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, 'uploads/');
},
filename: function (req, file, cb) {
// If you uploaded for example, the directory: myDir/myFile.txt,
// file.originalname *would* be set to that (myDir/myFile.txt)
// and myFile.txt would get saved to uploads/myDir
// *provided that* uploads/myDir already exists.
// (if it doesn't upload will fail)
// /* if( [ uploads/myDir doesn't exist ] ) { mkdir } */
cb(null, file.originalname);
}
});

有用的提示:在前端,我发现使用以下命令测试目录/子目录上传更容易:(在 Chrome 最新版上测试正常)

<form action="/uploads/multipleFiles" method="post" enctype="multipart/form-data">
<input type="file" name="multiple" webkitdirectory accept="text/*" onchange="console.log(this.files)" />
<input type="text" name="tester" value="uploadTester" />
<input type="submit"/>
</form>

关于javascript - Multer 前端的自定义文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55977822/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com