Node.js文件上传不起作用

时间:2012-02-28 21:53:08

标签: node.js dotcloud

我正在使用node.js构建一个超级简单的文件服务器。

我正在使用dotcloud托管我的服务器,即accessible here.

当我尝试上传文件(使用正确的密码)时,我的代码返回'Error, incorrect password!'。看看下面的代码,我将解释原因:

var success = false;
        var form = new formidable.IncomingForm();
        form.parse(req, function(err,fields, files) {
            console.log("Password: " + fields.password);
    if(fields.password!="poop") {
        return;
    }
       fs.rename(files.upload.path, files.upload.name, function (err) {  });
       success = true;
          res.writeHead(200, {'content-type': 'text/plain'});
          res.write('received upload:\n\n');
          res.end();
        });
        req.on('end', function() {
          // empty 200 OK response for now
      if(success) {
              res.writeHead(302, { 'location': '/' });
          } else {
      res.writeHead(200, {'content-type': 'text/plain'});
              res.write('Error, incorrect password!\n');
      }
          res.end();
        });

我认为我的代码在'fs.rename(files .....)'失败,因为成功变量未设置为true。我的代码适用于我的本地node.js安装,我是否需要从dotcloud请求写入权限?

1 个答案:

答案 0 :(得分:0)

我相信HTTP请求的end事件是在强制解析表单之前发出的

事件调度的确切顺序未在Node.js文档中定义;因此,根据Node.js版本和/或平台,它们可能会以不同的顺序进行处理。

在这种情况下,如果发生这种情况,success则为false,您甚至在实际解析表单之前发送回复。

也许您应该在表格解析功能中处理错误?