-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestHandlers.js
More file actions
81 lines (79 loc) · 2.41 KB
/
Copy pathrequestHandlers.js
File metadata and controls
81 lines (79 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
var exec = require("child_process").exec;
var querystring = require("querystring");
var fs = require("fs");
var formidable = require("formidable");
// function start(resp){
// console.log("Request handler 'start' was called.");
// //对不同http请求进行响应方法一
// // function sleep(milliSeconds){
// // var startTime = new Date().getTime();
// // while(new Date().getTime() < (startTime + milliSeconds));
// // }
// // sleep(2000);
// // return "Hello Start";
// //
// //
// // 方法二
// //
// //
// // var content = "empty";
// // exec("ls -lah", function(error, stdout, stderr){
// // content = stdout;
// // });
// // return content;
// exec("find/", {timeout:100000, maxBuffer:20000*1024}, function(error, stdout, stderr){
// resp.writeHead(200, {'Content-Type':'text/plain'});
// resp.write(stdout);
// resp.end();
// });
// }
function start(resp, postData){
console.log("Request handler 'start' was called.");
var body = '<html>'+
'<head>'+
'<meta http-equiv="Content-Type" content="text/html; '+
'charset=UTF-8" />'+
'</head>'+
'<body>'+
'<form action=\'/upload\' enctype="multipart/form-data" method=\'post\'>'+
'<input type="file" name="upload" />'+
'<input type=\'submit\' value=\'Upload file\' />'+
'</form>'+
'</body>'+
'</html>'
resp.writeHead(200, {'Content-Type':'text/html'});
resp.write(body);
resp.end();
}
function upload(resp, req){
console.log("Request handler 'upload' was called.");
var form = new formidable.IncomingForm();
console.log("about to parse");
form.uploadDir="/temp";
form.parse(req, function(error, fileds, files){
console.log("parsing done");
console.log(files.upload.path);
fs.renameSync(files.upload.path, "./temp/123.jpg");
resp.writeHead(200, {'Content-Type':'text/html', 'charset':'UTF-8'});
resp.write("接收到的图片:<br/>");
resp.write('<img src="/show" />');
resp.end();
})
}
function show(resp){
console.log("Request handler 'show' was called.");
fs.readFile("./temp/123.jpg", "binary", function(error, file){
if(error){
resp.writeHead(500, {'Content-Type':'text/plain'});
resp.write(error+"\n");
resp.end();
}else{
resp.writeHead(200, {'Content-Type':'image/png'});
resp.write(file, "binary");
resp.end();
}
})
}
exports.start = start;
exports.upload = upload;
exports.show = show