上传文件
使用formidable进行上传文件的操作
C:\Users\Your Name>npm install formidable
下载formidable文件完成之后,然后可以在任何程序里面包含这和个模块
var formidable = require('formidable');
步骤1 创建上传表格
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write('
<form action="fileupload" method="post" enctype="multipart/form-data">');
res.write('<input type="file" name="filetoupload">
');
res.write('<input type="submit">');
res.write('</form>
');
return res.end();
}).listen(8080);
步骤2 解析上传文件
包括强大的模块,一旦上传到服务器,就能够解析上传的文件。当文件被上传和解析时,它将被放置在计算机上的临时文件夹中。
var http = require('http');
var formidable = require('formidable');
http.createServer(function (req, res) {
if (req.url == '/fileupload') {
var form = new formidable.IncomingForm();
form.parse(req, function (err, fields, files) {
res.write('File uploaded');
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="filetoupload">
');
res.write('<input type="submit">');
res.write('</form>
');
return res.end();
}
}).listen(8080);
步骤三
当一个文件成功上传到服务器时,它被放置在一个临时文件夹中。这个目录的路径可以在“文件”的对象,在parse()方法的回调函数的第二个参数传递。要将文件移动到您选择的文件夹,请使用文件系统模块,并重命名文件:
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="filetoupload">
');
res.write('<input type="submit">');
res.write('</form>
');
return res.end();
}
}).listen(8080);