Nodejs文件上传

问题描述 投票:0回答:1

并且我收到此错误:var oldpath = files.filetoupload.path;TypeError:无法读取未定义的属性'path'

使用此代码:

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

http.createServer(function (req, res) {
  if (req.url == '/fileupload') {
    var form = new formidable.IncomingForm();
    form.parse(req, function (err, fields, files) {
      var oldpath = files.filetoupload.path;
      var newpath = 'C:/Users/Your Name/' + files.filetoupload.name;
      fs.rename(oldpath, newpath, function (err) {
        if (err) throw err;
        res.write('File uploaded and moved!');
        res.end();
      });
 });
  } else {
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.write('<form action="fileupload" method="post" enctype="multipart/form-data">');
    res.write('<input type="file" name="fil`enter code here`etoupload"><br>');
    res.write('<input type="submit">');
    res.write('</form>');
    return res.end();
  }
}).listen(8080);

使用w3c学校网站:https://www.w3schools.com/nodejs/nodejs_uploadfiles.asp

node.js formidable
1个回答
0
投票

检查您的输入类型文件。您需要给它起一个名字:filetoupload

<input type="file" name="filetoupload">
最新问题
© www.soinside.com 2019 - 2024. All rights reserved.