//1:加载http模块 http
const http = require("http");
//2:创建http 服务器
var server = http.createServer();
//3:为服务器绑定监听端口 8080
//端品有效范围: 1023---65535
server.listen(8080);
//4:为http服务器注册事件 request
server.on('request',function(req,res){
//解析客户发来请求消息
console.log("请求方法:"+req.method);
console.log("请求地址:"+req.url);
console.log("协议版本:"+req.httpVersion);
console.log("请求头部:"+req.headers);
//给出响应
//console.log(res);
res.statusCode = 200; //设置服务器响应状态码
res.setHeader('Content-Type','text/html');
res.write('<html>');//向客户端输出响应消息
res.write('<body><h1>hello nodejs</h1></body>');
res.write('</html>');
res.end();//##通知客户端,响应消息结束
});
Node http请求信息
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:Node 多页面请求
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
node.js以post请求方式发送http请求
node.js以post请求方式发送http请求
javascript http node post请求 -
node 发出的请求charles怎么抓不到 node 发送http请求
node处理http请求以及node实
get请求 post请求 JSON