函數(shù)傳遞是如何讓HTTP服務(wù)器工作的

2018-02-24 15:25 更新

帶著這些知識,我們再來看看我們簡約而不簡單的HTTP服務(wù)器:

var http = require("http");

http.createServer(function(request, response)  {
? response.writeHead(200,  {"Content-Type":  "text/plain"});
? response.write("Hello World");
? response.end();
}).listen(8888);

現(xiàn)在它看上去應(yīng)該清晰了很多:我們向?createServer?函數(shù)傳遞了一個(gè)匿名函數(shù)。

用這樣的代碼也可以達(dá)到同樣的目的:

var http = require("http");

function onRequest(request, response)  {
? response.writeHead(200,  {"Content-Type":  "text/plain"});
? response.write("Hello World");
? response.end();
}

http.createServer(onRequest).listen(8888);

也許現(xiàn)在我們該問這個(gè)問題了:我們?yōu)槭裁匆眠@種方式呢?

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號