Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP请求方法 #5

Open
GodLyons opened this issue Jul 22, 2021 · 0 comments
Open

HTTP请求方法 #5

GodLyons opened this issue Jul 22, 2021 · 0 comments
Labels
documentation Improvements or additions to documentation protocal

Comments

@GodLyons
Copy link
Owner

  • GET:获取资源

    GET方法用来请求访问已被URI识别的资源。指定的资源经服务器端解析后返回响应内容。

  • POST:传输实体主体

    POST方法主要用来传输实体的主体。

  • PUT:传输文件

    PUT方法用来传输文件,需要在请求报文的主体中包含文件内容,然后保存到请求URI指定的位置。

  • HEAD:获得报文首部

    HEAD方法和GET方法一样,只是不反悔报文主体部分。用于确认URI的有效性及资源更新的日期时间等。

  • DELETE:删除文件

    DELETE方法用来删除文件,和PUT方法恰恰相反。

  • OPTIONS:询问支持的方法

    OPTIONS方法用来查询针对请求URI指定的资源支持的方法。

  • TRACE:追踪路径

    客户端可以通过TRACE方法查询发送出去的请求时怎样被加工修改的。请求想要连接到源目标服务器kennel会通过代理中专,TRACE方法就是用来确认连接过程中发生的一系列操作。

  • CONNECT:要求用隧道协议连接代理

参考文献

  1. 《图解HTTP》
@GodLyons GodLyons added documentation Improvements or additions to documentation protocal labels Jul 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation protocal
Projects
None yet
Development

No branches or pull requests

1 participant