HTTP
HTTP(hypertext transport protocol)协议『超文本传输协议』,协议详细规定了浏览器和万维网服务器之间互相通信的规则。
约定, 规则
请求报文
重点是格式与参数
行 POST /s?ie=utf-8 HTTP/1.1
头 Host: atguigu.com
Cookie: name=guigu
Content-type: application/x-www-form-urlencoded
User-Agent: chrome 83
空行
体 username=admin&password=admin
响应报文
行 HTTP/1.1 200 OK
头 Content-Type: text/html;charset=utf-8
Content-length: 2048
Content-encoding: gzip
空行
体 <html>
<head>
</head>
<body>
<h1>尚硅谷</h1>
</body>
</html>
- 404 找不到内容
- 403 被禁止
- 401 未授权
- 500 内部错误
- 200 成功
- 304 不是第一次访问无需重新加载
控制台查看通信报文
请求头
点击view source
请求行
请求体内容
对URL中参数解析
响应体
node.js
查看是否安装
express基本使用(基于node.js)
管理员方式打开VSCode
npm init --yes
初始化
npm i express
安装
文件名不能出现中文
//1. 引入express
const express = require('express');
//2. 创建应用对象
const app = express();
//3. 创建路由规则
// request 是对请求报文的封装
// response 是对响应报文的封装
app.get('/', (request, response)=>{
//设置响应
response.send('HELLO EXPRESS');
});
//4. 监听端口启动服务
app.listen(8000, ()=>{
console.log("服务已经启动, 8000 端口监听中....");
});
node 文件名.js 开启服务
127.0.0.1:8000 查看结果
ctrl+c 关闭服务