美文网首页
HTTP Method(二)

HTTP Method(二)

作者: jiaxiaolei | 来源:发表于2017-12-26 21:55 被阅读9次

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

相关文章

  • HTTP Method(二)

    HTTP Method http://www.cnblogs.com/ID890/p/http.html 简介: ...

  • http和ajax接口请求

    http请求 资料 http method:HTTP Request Method(十五种) http heade...

  • HTTP Method

    原文 :HTTP Method 1.安全方法 HTTP定义了一组被称为安全方法的方法。GET方法和HEAD方法都被...

  • Runtime之Method Swizzling

    Method Swizzling 参考原文:http://nshipster.com/method-swizzli...

  • HTTP Request Method

    GET 请求指定的页面信息,并返回实体主体。 HEAD 类似于get请求,只不过返回的响应中没有具体的内容,用于...

  • http request method

    根据HTTP标准,HTTP请求可以使用多种请求方法。 HTTP1.0定义了三种请求方法: GET, POST 和 ...

  • http 的 method

    https://www.cnblogs.com/machao/p/5788425.html TRACE :It s...

  • http 405在servlet中的出现原因和解决方法

    HTTP Status 405 - HTTP method GET is not supported by thi...

  • ParameterEncoding

    /**HTTP method definitions.*/ // MARK: ParameterEncoding/...

  • 注解

    @RestController// 配置http@RequestMapping(value="", method=...

网友评论

      本文标题:HTTP Method(二)

      本文链接:https://www.haomeiwen.com/subject/ktyxjxtx.html