0

私はファイルのアップロードに手ごわいものを使用しています。アップロードが失敗した場合(たとえば、uploadDirが書き込み可能でない場合)、エラーはform.on('error')によって処理されず、代わりにキャッチされない例外です。アップロードエラーを処理するにはどうすればよいですか?これは基本的に、fromidableのReadmeのサンプルコードであり、uploadDirとエラーハンドラーは存在しません。

var formidable = require('formidable'),
    http = require('http'),

    util = require('util');

http.createServer(function(req, res) {
  if (req.url == '/upload' && req.method.toLowerCase() == 'post') {
    // parse a file upload
    var form = new formidable.IncomingForm();

    form.uploadDir = '/foo/'; // this does not exist

    form.on('error', function(error) { // I thought this would handle the upload error
      console.log("ERROR " + error);
      return;
    })

    form.parse(req, function(err, fields, files) {
      res.writeHead(200, {'content-type': 'text/plain'});
      res.write('received upload:\n\n');
      res.end(util.inspect({fields: fields, files: files}));
    });
    return;
  }

  // show a file upload form
  res.writeHead(200, {'content-type': 'text/html'});
  res.end(
    '<form action="/upload" enctype="multipart/form-data" method="post">'+
    '<input type="text" name="title"><br>'+
    '<input type="file" name="upload" multiple="multiple"><br>'+
    '<input type="submit" value="Upload">'+
    '</form>'
  );
}).listen(8000);

私が受け取るエラーは次のとおりです。

events.js:66
        throw arguments[1]; // Unhandled 'error' event
                       ^
Error: ENOENT, open '/foo/9b4121c196dcf3f55be4c8465f949d5b'
4

1 に答える 1

1

Formidablelib/file.jsで見たところ、ファイルをとして開こうとしますが、そのストリームにイベントハンドラーをfs.WriteStreamアタッチすることはありません。errorファイルのオープンにWriteStream失敗すると、errorイベントを発行しますが、これはFormidableで処理されず、エラーをスローします。Fileそのファイルで定義されたラッパー自体がEventEmitterであり、ストリーム上のエラーをインターセプトし、アップストリーム処理用の独自のエラーイベントとして再発行する可能性があるため、これはFormidableのバグだと思います。

于 2012-09-11T21:48:18.060 に答える