5

我正在尝试从使用 Cordova (Phonegap) 开发的应用程序上传文件(图片),但我总是获得Error: Request Aborted. 一开始我使用的fs.readFile()是我阅读的第一件事,但现在我使用Fomidable但错误是一样的:

错误

Error: Request aborted
    at IncomingMessage.onReqAborted (../XAMPP/xamppfiles/htdocs/nodeyag/node_modules/express/node_modules/connect/node_modules/multiparty/index.js:131:17)
    at IncomingMessage.EventEmitter.emit (events.js:117:20)
    at abortIncoming (http.js:1912:11)
    at Socket.serverSocketCloseListener (http.js:1924:5)
    at Socket.EventEmitter.emit (events.js:117:20)
    at TCP.close (net.js:466:12)

/图片上传

var form = new formidable.IncomingForm();

form.parse(req,function(err,fields,files) {
    if(err) console.log(err);
    console.log(files);
});

form.on('end',function(fields,files) {
    // temporary location of the uploaded file
    var tempPath = this.openedFiles[0].path;
    // filename of the uploaded file
    var fileName = this.openedFiles[0].name,
    newPath = config.uploadPicsDir + '/docs/';

    var file = { tempPath: tempPath, fileName: fileName };
        console.log(file);

        fs.copy(tempPath, newPath + 'picture.jpg' , function(err) {
            if(err) return next(err);

            console.log("file success!");

            res.send('Ok');
       });//end of copy()
});

为了复制文件,我使用了 fs-extra 模块。我能做些什么??

4

1 回答 1

0

你用的是哪个版本的快递?

在 express 4 中删除了表单多部分中间件

如果是这种情况,请尝试使用:https ://github.com/mscdex/connect-busboy

于 2014-12-16T15:50:55.133 回答