本节介绍Node.js Web模块,首先,你应该先了解什么是 Web服务器。
web服务器一般指网站服务器,是指驻留于因特网上某种类型计算机的程序。 Web服务器的基本功能就是提供Web信息浏览服务。它只需支持HTTP协议、HTML文档格式及URL,与客户端的网络浏览器配合。大多数Web服务器都支持服务端的脚本语言(Java、C#、php、python)等,并通过脚本语言从数据库获取数据,将结果返回给客户端浏览器。 目前最主流的三个 Web服务器是Apache.Nginx、llS。
client-客户端 :一般指浏览器,浏览器可以通过HTTP协议向服务器请求数据。 Server-服务端:一般指Web服务器,可以接收客户端请求,并向客户端发送响应数据。 Business -业务层:通过Web服务器处理应用程序,如与数据库交互,逻辑运算,调用外部程序等。 Data -数据层:一般由数据库组成。
以下是演示一个最基本的HTTP服务器架构(使用8888端口),创建server.js文件,代码如下所示:
- const http = require('http');
- const fs = require('fs');
- const url = require('url');
- // 创建服务器
- http.createServer(function (req, res) {
- // 解析请求,包括文件
- let pathname = url.parse(req.url).pathname;
- // 默认首页
- if (!pathname || pathname == '/') {
- pathname = '/index.html';
- }
- console.log(`接受到${pathname}请求`);
- // 读取文件
- fs.readFile(pathname.substr(1), function (err, data) {
- if (err) {
- console.log(err);
- // HTTP状态码:404 :NOT FOUND
- // content Type: text/plain
- res.writeHead(404, { "Content-Type": "text/html" });
- } else {
- // HTTP状态码:200 :OK
- // content Type: text/plain
- res.writeHead(200, { "Content-Type": "text/html" });
- // 响应式文件内容
- res.write(data.toString());
- }
- // 发送响应请求
- res.end();
- });
-
- }).listen(8888);
- console.log('http://localhost:8888');
- let http = require('http');
- // 用于请求的选项
- let options = {
- host: 'localhost',
- port: '8866',
- path: '/index.html',
- };
- // 处理响应的回调函数
- function callback(res) {
- // 不断更新数据
- var body = '';
- res.on('data', function (truck) {
- body += truck
- })
- // 数据接收完成
- res.on('end', function () {
- console.log(body);
- });
-
- }
- // 向服务器发送请求
- var req = http.request(options, callback);
- req.end();