Node 建立 Web 客戶端
阿新 • • 發佈:2018-11-04
Node 建立 Web 客戶端需要引入 http 模組,建立 client.js 檔案,程式碼如下所示:
例項:
var http = require('http');
// 用於請求的選項
var options = {
host: 'localhost',
port: '8080',
path: '/index.html'
};
// 處理響應的回撥函式
var callback = function(response){
// 不斷更新資料
var body = '';
response.on('data', function(data) {
body += data;
});
response.on('end', function() {
// 資料接收完成
console.log(body);
});
}
// 向服務端傳送請求
var req = http.request(options, callback);
req.end();
新開一個終端,執行 client.js 檔案,輸出結果如下:
$ node client.js <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(runoob.com)</title> </head> <body> <h1>我的第一個標題</h1> <p>我的第一個段落。</p> </body> </html>
執行 server.js 的控制檯輸出資訊如下:
Server running at http://127.0.0.1:8080/ Request for /index.html received. # 客戶端請求資訊