HTTP Method
http://www.cnblogs.com/ID890/p/http.html
简介:
HTTP Method
1.安全方法
HTTP定义了一组被称为安全方法的方法。GET方法和HEAD方法都被认为是安全的,这就意味着使用GET或HEAD方法的HTTP请求都不会产生什么动作。
安全方法并不一定什么动作都不执行(由web开发者决定)
使用安全方法的目的就是当使用可能引发某一动作的不安全方法时,运行HTTP应用程序开发者通知用户。
2.GET方法
通常用于请求服务器发送某个资源。HTTP/1.1实现此方法。
Hypertext Transfer Protocol -- HTTP/1.1
https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
简介:
Method Definitions
The set of common methods for HTTP/1.1 is defined below. Although this set can be expanded, additional methods cannot be assumed to share the same semantics for separately extended clients and servers.
The Host request-header field (section 14.23) MUST accompany all HTTP/1.1 requests.、、、
http://flask.pocoo.org/docs/0.12/quickstart/#http-methods
简介:
flask 中没找到 patch 的实现...
http://www.ietf.org/rfc/rfc2068.txt
Hypertext Transfer Protocol -- HTTP/1.1
简介:
Hypertext Transfer Protocol -- HTTP/1.1