加载中...

nodejs - http编程

1. 服务器端基础概念

1.1 网站的组成

网站应用程序主要分为两大部分:客户端和服务器端。

  • 客户端:在浏览器中运行的部分,就是用户看到并与之交互的界面程序。使用HTML、CSS、JavaScript构建。

  • 服务器端:在服务器中运行的部分,负责存储数据和处理应用逻辑。

1.2 Node网站服务器

能够提供网站访问服务的机器就是网站服务器,它能够接收客户端的请求,能够对请求做出响应

1.3 IP地址

互联网中设备的唯一标识。

IP是Internet Protocol Address的简写,代表互联网协议地址.

1.4域名

由于IP地址难于记忆,所以产生了域名的概念,所谓域名就是平时上网所使用的网址

https://www.baidu.com => https://14.215.177.39/

虽然在地址栏中输入的是网址, 但是最终还是会将域名转换为ip才能访问到指定的网站服务器

1.5 端口

端口是计算机与外界通讯交流的出口,用来区分服务器电脑中提供的不同的服务。

1.6 URL

统一资源定位符,又叫URL(Uniform Resource Locator),是专为标识Internet网上资源位置而设的一种编址方式,我们平时所说的网页地址指的即是URL。

URL的组成

传输协议😕/服务器IP或域名:端口/资源所在位置标识

http://www.cnblogs.com/royal6/p/12500483.html

1.7 开发过程中客户端和服务器端说明

在开发阶段,客户端和服务器端使用同一台电脑,即开发人员电脑。

开发人员电脑

  • 客户端 (浏览器)
  • 服务器端(Node)

本机域名:localhost

本地IP :127.0.0.1

2. 创建web服务器

  // 引用系统模块
 const http = require('http');
  // 创建web服务器
 const app = http.createServer();
  // 当客户端发送请求的时候
 app.on('request', (req, res) => {
        //  响应
       res.end('<h1>hi, user</h1>');
 });
  // 监听3000端口
 app.listen(3000);
 console.log('服务器已启动,监听3000端口,请访问 localhost:3000')

3. HTTP协议

3.1 HTTP协议的概念

超文本传输协议(英文:HyperText Transfer Protocol,缩写:HTTP)规定了如何从网站服务器传输超文本到本地浏览器,它基于客户端服务器架构工作,是客户端(用户)和服务器端(网站)请求和应答的标准。

3.2报文

在HTTP请求和响应的过程中传递的数据块就叫报文,包括要传送的数据和一些附加信息, 齟要遵守规定好的格式。

3.3请求报文

  1. 请求方式 (Request Method)
  • GET 请求数据
  • POST 发送数据
  1. 请求地址(Request URL)
 app.on('request', (req, res) => {
     req.headers  // 获取请求报文
     req.url      // 获取请求地址
     req.method   // 获取请求方法
 });

3.4响应报文

  1. HTTP状态码

    200 请求成功

    404 请求的资源没有被找到

    500 服务器端错误

    400 客户端请求有语法错误

  2. 内容类型

    text/html

    text/css

    application/javascript

    image/jpeg

    application/json

例:

 app.on('request', (req, res) => {
     // 设置响应报文
     res.writeHead(200, {
         'Content-Type': 'text/html;charset=utf8'
     });
 });

4. HTTP请求与响应处理

4.1 请求参数

客户端向服务器端发送请求时,有时需要携带一些客户信息,客户信息需要通过请求参数的形式传递到服务器端,比如登录操作。

4.2 GET请求参数

  • 参数被放置在浏览器地址栏中,例如:http://localhost:3000/?name=zhangsan&age=20

  • 参数获取需要借助系统模块url,url模块用来处理url地址

 const http = require('http');
 // 导入url系统模块 用于处理url地址
 const url = require('url');
 const app = http.createServer();
 app.on('request', (req, res) => {
     // 将url路径的各个部分解析出来并返回对象
         // true 代表将参数解析为对象格式
     let {query} = url.parse(req.url, true);
     console.log(query);
 });
 app.listen(3000);

4.3 POST请求参数

  • 参数被放置在请求体中进行传输
  • 获取POST参数需要使用data事件和end事件
  • 使用querystring系统模块将参数转换为对象格式
 // 导入系统模块querystring 用于将HTTP参数转换为对象格式
 const querystring = require('querystring');
 app.on('request', (req, res) => {
     let postData = '';
     // 监听参数传输事件
     req.on('data', (chunk) => postData += chunk;);
     // 监听参数传输完毕事件
     req.on('end', () => { 
         console.log(querystring.parse(postData)); 
     }); 
 });

4.4 路由

http://localhost:3000/index

http://localhost:3000/login

路由是指客户端请求地址与服务器端程序代码的对应关系。简单的说,就是请求什么响应什么。

const http = require('http');
const url = require('url');

const app = http.createServer();

app.on('request', (req,res)=>{
    //获取请求方法,为了方便一般转为小写
    const method = req.method.toLowerCase();
    //获取请求地址
    const {pathname} = url.parse(req.url);
    //设置请求头
    res.writeHead(200,{
        'content-type':'text/html;charset=utf8'
    });
    if(method == 'get'){
        if(pathname =='' || pathname == '/index'){
            res.end('欢迎进入首页');
        }else if(pathname == '/login'){
            res.end('登陆页面');
        }else{
            res.end('该页面不存在');
        }
    }else if(method == 'post'){
        
    }
});
//监听端口
app.listen(3000);
console.log('成功打开服务器');

4.5 静态资源

服务器端不需要处理,可以直接响应给客户端的资源就是静态资源,例如CSS、JavaScript、image文件。

例如:http://localhost/images/logo.png

const http = require('http');
const url = require('url');
const path = require('path');
const fs = require('fs');
const mime = require('mime');

const app = http.createServer();

app.on('request', (req, res) => {
	// 获取用户的请求路径
	let pathname = url.parse(req.url).pathname;

	pathname = pathname == '/' ? '/default.html' : pathname;

	// 将用户的请求路径转换为实际的服务器硬盘路径
	let realPath = path.join(__dirname, 'public' + pathname);

	let type = mime.getType(realPath)

	// 读取文件
	fs.readFile(realPath, (error, result) => {
		// 如果文件读取失败
		if (error != null) {
			res.writeHead(404, {
				'content-type': 'text/html;charset=utf8'
			})
			res.end('文件读取失败');
			return;
		}
		//设置响应头
		res.writeHead(200, {
			'content-type': type
		})

		res.end(result);
	});
});

app.listen(3000);
console.log('服务器启动成功')

4.6动态资源

相同的请求地址不同的响应资源,这种资源就是动态资源。

http://localhost/article?id=1

http://localhost/article?id=2

posted @ 2020-03-17 15:31  royal6  阅读(224)  评论(0编辑  收藏  举报