一个基本的Web客户端检索静态文件
Posted Beat Yourself
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个基本的Web客户端检索静态文件相关的知识,希望对你有一定的参考价值。
获取百度首页html文件
var http=require("http"); var options={ hostname:"www.baidu.com", port:"80", path:"/" }; function handleResponse(response){ response.on("data",(chunk)=>{ serverData+=chunk; }); response.on("end",()=>{ console.log(serverData); }); } http.get(options,(response)=>{ handleResponse(response); }).on("error",(err)=>{ console.log(err.message) });
以上是关于一个基本的Web客户端检索静态文件的主要内容,如果未能解决你的问题,请参考以下文章