W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
帶著這些知識,我們再來看看我們簡約而不簡單的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)槭裁匆眠@種方式呢?
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: