在 Node 中使用 formidable 处理文件上传

2021-04-24 20:27

阅读:274

标签:文件上传   http   inpu   uri   使用   form   add   multipart   npm   

具体使用方式参照官方文档:https://www.npmjs.com/package/formidable

第一:安装:

# npm install --save formidable
yarn add formidable

第二:基本使用:

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.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(
    '
'+ '
'+ '
'+ ''+ '
' ); }).listen(8080);

在 Node 中使用 formidable 处理文件上传

标签:文件上传   http   inpu   uri   使用   form   add   multipart   npm   

原文地址:https://www.cnblogs.com/ygjzs/p/12233074.html


评论


亲,登录后才可以留言!