强大的多文件上传 - ENOENT,没有这样的文件或目录

时间:2014-08-14 15:31:33

标签: javascript node.js file-upload multipart formidable

我知道这个问题已经被问到了,但我的思绪因为无法实现这个问题而受到了打击。我正在尝试使用以下代码将多个图像上传到我的服务器:

var formidable = require('formidable');
var fs = require('fs');

...

router.post('/add_images/:showcase_id', function(req, res){
    if(!admin(req, res)) return;
    var form = new formidable.IncomingForm(),
    files = [];


    form.uploadDir = global.__project_dirname+"/tmp";
    form.on('file', function(field, file) {
        console.log(file);

        file.image_id = global.s4()+global.s4();
        file.endPath = "/img/"+file.image_id+"."+file.type.replace("image/","");
        files.push({field:field, file:file});
    });
    form.on('end', function() {
        console.log('done');
        console.log(files);
        db.get("SOME SQL", function(err, image_number){
            if(err){
                console.log(err);
            }
            var db_index = 0;
            if(image_number) db_index = image_number.image_order;
            files.forEach(function(file, index){
                try{
                    //this line opens the image in my computer (testing)
                    require("sys").exec("display " + file.file.path);
                    console.log(file.file.path);
                    fs.renameSync(file.file.path, file.file.endPath);
                }catch (e){
                    console.log(e);
                }
                db.run( "SOME MORE SQL"')", function(err){
                    if(index == files.length)
                        res.redirect("/admin/gallery"+req.params.showcase_id);
                });
            });
        });
    });
    form.parse(req);
});

通过系统调用打开图像的行工作正常,但我继续得到: Error: ENOENT, no such file or directory '/home/[username]/[project name]/tmp/285ef5276581cb3b8ea950a043c6ed51' 通过重命名声明。

file.file.path的值是: /home/[username]/[project name]/tmp/285ef5276581cb3b8ea950a043c6ed51

我很困惑并尝试过一切。我做错了什么?

2 个答案:

答案 0 :(得分:3)

您可能会收到此错误,因为目标路径不存在或您没有写入权限。

由于nodejs中的错误,您得到的错误会产生误导,请参阅:

考虑添加:

console.log(file.file.endPath);
fs.renameSync调用之前

并检查目标路径是否存在且应用程序是否可写

答案 1 :(得分:-1)

您说过表格。因此请注意,Formidable不能仅使用NodeJS即开即用。除非您使用提示模块之类的内容进行输入。如果您使用的是HTML,则需要Angular,React或Browserify之类的东西才能使其能够访问您的界面。