标签:str color res post put 哪些 服务器 nta hat
1、RESTful API
REST
: Representational State Transfer
url 对应服务器上的一种资源,e.g. 数据,图片等,所以url 中只含有名词,通过HTTP动词来描述对资源的操作方式。
HTTP 动词
2、put post区别
POST:
> modify and update a resource
POST /questions/<existing_question> HTTP/1.1
> create a resource:
POST /questions HTTP/1.1
> Note that the following is an error:
POST /questions/<new_question> HTTP/1.1
PUT:
> To overwrite an existing resource:
PUT /questions/<existing_question> HTTP/1.1
> create a resource:
PUT /questions/<new_question> HTTP/1.1
在更新资源的操作上,POST 和 PUT 基本相同。
在创建资源时,PUT可以指定资源路径,POST无法指定资源路径。
标签:str color res post put 哪些 服务器 nta hat
原文地址:https://www.cnblogs.com/mengfangui/p/9642030.html