我是 Node.js 的新手,我正在使用 Express 和 Busboy-Connect 创建一个简单的文件上传表单,仅适用于 wav 文件。这是我正在尝试做的事情: - 开始上传 - 如果 mimetype 不是 wav,则重定向到错误页面 - 否则:将文件写入服务器并重定向回来。
如果 mimetype 有效,则一切正常,但如果不是,我无法重定向,浏览器只是挂起并最终超时。我对它的理解是浏览器不想重定向,因为它正在等待上传完成,但是如何在我的 js 代码中取消上传?我可以解决这个问题并编写文件,然后如果它不是正确的 mimetype 则将其删除,但我认为这样做有点愚蠢,我宁愿找到一种方法来触发将停止它并立即重定向的事件。这是我的应用程序代码(片段):
app.get('/', function (req, res) {
res.render(__dirname + '/public/index.ejs', {error: 0});
});
app.get('/error', function (req, res) {
res.render(__dirname + '/public/index.ejs', {error: 1});
});
app.post('/upload', function (req, res) {
var timestamp = new Date().getTime().toString();
//console.log(timestamp);
var fstream;
req.pipe(req.busboy);
req.busboy.on('file', function (fieldname, file, filename, encoding, mimetype) {
if ("audio/wav" != mimetype)
{
console.log("invalid mimetype"); // that prints ok
// req.busboy.end(); // I tried that but it doesn't work
res.redirect('/error');
}
else
{
console.log("Uploading: " + mimetype);
fstream = fs.createWriteStream(__dirname + '/tmp/' + timestamp + filename);
file.pipe(fstream);
fstream.on('close', function () {
res.redirect('back');
});
}
});
});
谁能指出我正确的方向?谢谢您的帮助 !