目前為止,我們做的伺服器沒有實際的用處,接下來我們開始實作一些實際有用的功能。
我們要做的是:使用者選擇一個文件,上傳該文件,然後在瀏覽器中看到上傳的文件。
首先我們需要一個文字區(textarea)供使用者輸入內容,然後透過POST請求提交給伺服器。
我們在start事件處理器裡加入程式碼,requestHandlers.js修改如下:
function start(response) {
console.log("Request handler 'start' was called.");
var body = '' ''
''
''
''
''
''
'';
response.writeHead(200, {"Content-Type": "text/html"});
response.write(body);
response.end();
}
function upload(response) {
console.log("Request handler 'upload' was called.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello Upload");
response.end();
}
exports.start = start;
exports.upload = upload;
透過在瀏覽器中存取http://localhost:8888/start就可以看到效果了。
接下來我們要實作當使用者提交表單時,觸發/upload請求處理程序處理POST請求。
為了讓整個過程非阻塞,Node.js會將POST資料拆分成很多小的資料塊,然後透過觸發特定的事件,將這些小資料塊傳遞給回調函數。這裡的特定的事件有data事件(表示新的小資料塊到達了)以及end事件(表示所有的資料都已經接收完畢)。
我們透過在request物件上註冊監聽器(listener) 來實現。這裡的 request物件是每次接收到HTTP請求時候,都會把該物件傳遞給onRequest回呼函數。
我們把程式碼放在伺服器裡,server.js修改如下:
var http = require("http");
var url = require("url");
function start(route, handle) {
function onRequest(request, response) {
var postData = "";
var pathname = url.parse(request.url).pathname;
console.log("Request for " pathname " received.");
request.setEncoding("utf8");
request.addListener("data", function(postDataChunk) {
postData = postDataChunk;
console.log("Received POST data chunk '" postDataChunk "'.");
});
request.addListener("end", function() {
route(handle, pathname, response, postData);
});
}
http.createServer(onRequest).listen(8888);
console.log("Server has started.");
}
exports.start = start;
上述程式碼做了三件事情: 首先,我們設定了接收資料的編碼格式為UTF-8,然後註冊了「data」事件的監聽器,用於收集每次接收到的新資料區塊,並將其賦值給postData 變量,最後,我們將請求路由的呼叫移到end事件處理程序中,以確保它只會當所有資料接收完畢後才觸發,並且只觸發一次。我們同時也把POST資料傳遞給請求路由,因為這些數據,請求處理程序會用到。
接下來在/upload頁面,展示使用者輸入的內部
我們來改一下 router.js:
function route(handle, pathname, response, postData) {
console.log("About to route a request for " pathname);
if (typeof handle[pathname] === 'function') {
handle[pathname](response, postData);
} else {
console.log("No request handler found for " pathname);
response.writeHead(404, {"Content-Type": "text/plain"});
response.write("404 Not found");
response.end();
}
}
exports.route = route;
然後,在requestHandlers.js中,我們將資料包含在對upload請求的回應中:
function start(response, postData) {
console.log("Request handler 'start' was called.");
var body = ''
''
''
''
''
'
'
''
'';
response.writeHead(200, {"Content-Type": "text/html"});
response.write(body);
response.end();
}
function upload(response, postData) {
console.log("Request handler 'upload' was called.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("You've sent: " postData);
response.end();
}
exports.start = start;
exports.upload = upload;
我們最後要做的是: 目前我們是把請求的整個訊息體傳遞給了請求路由和請求處理程序。我們應該只把POST資料中,我們感興趣的部分傳遞給請求路由和請求處理程序。在我們這個例子中,我們感興趣的其實只是text欄位。
我們可以使用先前介紹過的querystring模組來實現:
var querystring = require("querystring");
function start(response, postData) {
console.log("Request handler 'start' was called.");
var body = ''
''
''
''
''
'
'
''
'';
response.writeHead(200, {"Content-Type": "text/html"});
response.write(body);
response.end();
}
function upload(response, postData) {
console.log("Request handler 'upload' was called.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("You've sent the text: " querystring.parse(postData).text);
response.end();
}
exports.start = start;
exports.upload = upload;
好了,以上就是關於處理POST資料的全部。
下一節,我們將實現圖片上傳的功能。