码迷,mamicode.com
首页 > Web开发 > 详细

Which HTTP methods match up to which CRUD methods?

时间:2019-01-22 17:34:00      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:flow   ase   which   pen   https   out   turn   over   post   

https://stackoverflow.com/questions/6203231/which-http-methods-match-up-to-which-crud-methods

 
Create = PUT with a new URI
         POST to a base URI returning a newly created URI
Read   = GET
Update = PUT with an existing URI
Delete = DELETE

PUT can map to both Create and Update depending on the existence of the URI used with the PUT.

POST maps to Create.

Correction: POST can also map to Update although it‘s typically used for Create. POST can also be a partial update so we don‘t need the proposed PATCH method.

 

Which HTTP methods match up to which CRUD methods?

标签:flow   ase   which   pen   https   out   turn   over   post   

原文地址:https://www.cnblogs.com/chucklu/p/10304592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!