1

そのため、Windows マシンで作業しているアップロード スクリプト (コードは以下) に取り組んでいますが、Linux サーバーでは失敗するようです

Error: ENOENT, open 'uploads/da5ab67b48ea2deecd25127186017083'

エラーがパス/ファイルがないことを示していることは理解していますが、ファイルの名前を変更する前にファイルの存在を確認します。

exports.product_files_upload = function (req, res) {
    if (req.files) {
        var tmpArray = [];
        for(var file in req.files){
            console.log(file)
            if (file){
                var splitName = file.split('-');
                if (splitName.length > 1) {
                    var username = splitName[0];
                    var productId = splitName[1];
                    var index = splitName[2];
                } else {
                    return;
                }
            } else {
                return;
            }
            //console.log(username)
            //console.log(productId)
            var tmp_path = req.files[file].path;
            console.log(fs.existsSync(tmp_path))
            createUserDir();
            createProductDirs(username, productId);
            //console.log(__dirname)
            var target_path = './public/user_files/'+ username + '/products/'+productId+'/files/' + req.files[file].name,
                save_path = 'user_files/'+ username + '/products/'+productId+'/files/' + req.files[file].name;
            if (fs.existsSync(target_path)) {
                tmpArray.push({exists:true, name:req.files[file].name});
            } else {
                tmpArray.push({
                    size: req.files[file].size,
                    type: req.files[file].type,
                    name: req.files[file].name,
                    path: save_path,
                    exists:false
                });
                if (fs.existsSync(tmp_path)) {
                    fs.rename(tmp_path, target_path, function(err) {
                        if (err) throw err;
                        // delete the temporary file, so that the explicitly set temporary upload dir does not get filled with unwanted files
                        fs.unlink(tmp_path, function() {
                            if (err) throw err;
        //                    res.send(save_path);

                        });
                    });
                } else {
                    tmpArray.push({
                        size: req.files[file].size,
                        type: req.files[file].type,
                        name: req.files[file].name,
                        path: save_path,
                        exists:false
                    });
                }
            }
        }
        res.json(tmpArray);
    }

};

更新:エクスプレスアプリを実行するためにフォーエバーを使用しています。アプリをフォーエバープロセスを停止し、「node app.js」だけに切り替えると、問題は修正されました。これは受け入れられる修正ではありません。永遠に問題があるのではないかと考えています。

4

1 に答える 1

1

わかりました。Linuxボックスでアプリを起動するために絶対パスで永遠に使用していました

forever start /path/to/app.js

しかし、アプリディレクトリに移動してからアプリを起動すると、機能します。

forever start app.js
于 2013-01-16T04:49:46.563 に答える