在 Node 中使用 formidable 处理文件上传
Posted ygjzs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 Node 中使用 formidable 处理文件上传相关的知识,希望对你有一定的参考价值。
具体使用方式参照官方文档: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:
');
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(8080);
以上是关于在 Node 中使用 formidable 处理文件上传的主要内容,如果未能解决你的问题,请参考以下文章
使用 Node.js、Async 和 Formidable 处理错误
Node学习笔记接收处理表单数据的好方法--formidable
node 静态资源服务中间件 错误路由处理中间件 next向下匹配 nodemon热更新 表单数据处理formidable cookie-parser中间件