在 Node 中使用 formidable 处理文件上传
2021-04-24 20:27
标签:文件上传 http inpu uri 使用 form add multipart npm 具体使用方式参照官方文档:https://www.npmjs.com/package/formidable 第一:安装: 第二:基本使用: 在 Node 中使用 formidable 处理文件上传 标签:文件上传 http inpu uri 使用 form add multipart npm 原文地址:https://www.cnblogs.com/ygjzs/p/12233074.html
# 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://soscw.com/index.php/essay/79095.html