HTTP Method小记

Posted 青山应回首

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP Method小记相关的知识,希望对你有一定的参考价值。

 

 

HTTP 0.9 这个版本只有GET方法

HTTP 1.0 这个版本有GET HEAD POST这3个方法

HTTP 1.1 这个版本是当前版本,包含GET HEAD POST OPTIONS PUT DELETE TRACE CONNECT这8个方法

  

Django中:
http_method_names = [‘get‘, ‘post‘, ‘put‘, ‘patch‘, ‘delete‘, ‘head‘, ‘options‘, ‘trace‘]

  

 详细解释请移步:

参考:http://www.jianshu.com/p/1a49a7b08ee0

参考:https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9

参考:HTTP/1.1

 

以上是关于HTTP Method小记的主要内容,如果未能解决你的问题,请参考以下文章

Flutter小记5Isolate && ffi && Method Channel 使用简介与总结

springcloud报错-------关于 hystrix 的异常 FallbackDefinitionException:fallback method wasn't found(代码片段

java.lang.NullPointerException: Attempt to invoke virtual method ‘int android.database.sqlite异常(代码片段

Spring Cloud Feign 报:Method not annotated with HTTP method type (ex. GET, POST)

scala小记

GET和POST小记