Node 创建 Web 客户端需要引入 http 模块,创建 client.js 文件,代码如下所示:
var http = require('http'); //用于请求的选项 var options = { host:'localhost', port:'8000', path:'/index.htm' }; //处理响应的回调函数 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 <html> <head> <title>Sample Page</title> </head> <body> Hello World! </body> </html>