//0218-4.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="fileupload" method="post" enctype="mutipart/form-data">
<input type="file" name="filetoupload">
<input type="submit">
</form>
</body>
</html>
//0218-4.js
var http = require('http');
var fs = require('fs');
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 upload');
res.end();
})
}else{
fs.readFile('0218-4.html',function(err,data){
if(err) throw err;
res.writeHead(200,{'Content-type':'text/html'});
res.write(data);
res.end();
});
}
}).listen(8080)
2018年2月17日 星期六
【Node.js】使用formidable module產生的建構子建構一個新物件,並使用其IncomingForm方法建立物件,並使用其parse方法,用其參數中的function來判斷是否上傳檔案成功
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言