http基本知识http/1.1

http基本知识http/1.1_第1张图片
image.png
http基本知识http/1.1_第2张图片
image.png

请求

GET/HTTP/1.1  //请求方法/URI/版本号
HOST:hacker.jp

一般用get或post方法
get:获取资源
post:传输实体主体
options:询问

响应

HTTP/1.1 200 OK   //版本/ 状态码/状态码原因
Date:
Content-Type:text/html

状态码
1XX:正在处理信息
2XX:成功
3XX:重定向
4XX:客户端错误
5XX:服务器错误

首部大全包括请求方法和状态码全部查询表见:
http://tools.jb51.net/table/http_header

遇到的问题
头部修改

this.api.post('/admin/role', this.formItem,{
                // headers:{
                //     'Content-Type': 'multipart/form-data'
                // }
            }).then((res) => {
                console.log(res)
            }).catch( (error) => {
                console.log(error);
            });

你可能感兴趣的:(http基本知识http/1.1)