编程语言
首页 > 编程语言> > NodeJS - http模块简单使用

NodeJS - http模块简单使用

作者:互联网

// 一个简单的HTTP服务

// 加载http模块
var http = require('http');

// 创建一个http服务
var server = http.createServer();

// 监听用户的请求事件 (request事件)
// request对象包含了用户请求报文中的所有内容, 通过request对象可以获取所有用户提交过来的数据
// response对象用来向用户响应一些数据, 当服务器要向客户端响应数据的时候, 必须使用response对象
server.on('request', function(request, response) {
    // 向客户端做出响应
    response.write('Hello,World');
    // 对于每一个请求, 服务器必须结束响应, 否则浏览器会一直等待服务器响应结束
    response.end();
});

// 启动服务
// 7777: 自己设置的端口号
server.listen(7777, function() {
    console.log('服务器已启动');
});

// 浏览器输入 localhost:7777 即可访问

 

标签:http,NodeJS,request,7777,响应,模块,服务器,response
来源: https://www.cnblogs.com/mpci/p/12967085.html