// 用http模組建立服務
// 用url模組解析url
var url = require("url");
/** * req獲取url資訊(request)
* res瀏覽器返回響應資訊(response)
* 傳送http頭部
* http狀態值:200 ok
* 設定http頭部,狀態碼是200,檔案型別是html,字符集是utf-8
*/res.writehead(200, );
res.write("你好 https模組");
/*** 結束響應
*/res.end();
}).listen(8002);
node基礎 一 http模組
http.createserver function request,response 設定返回頭 response.write this is test 返回的內容 response.end end 響應結束 listen 2017 設定埠 2.http.get options callback ...
node筆記 一 http模組,url模組
獲取url輸入資訊 瀏覽器根據url,返回響應資訊 輸入node,終端進入node系統 列印url url.parse 解析url url.format 是url.parse 的逆向操作 獲取get引數 設定http頭部,狀態碼是200,檔案型別是html,字符集utf8 var result ur...
node學習 深入剖析http模組
表示我寫完了,訊息體結束 如果想獲取到伺服器的響應體 如果請求乙個api位址 如果是post請求 此時瀏覽器收不到響應資訊,會等待一段時間 靜態資源伺服器 http localhost 9527 index.html public index.html 檔案內容 http localhost 952...