REST architecture HTTP verb

POST increase
DELETE delete
PUT change
GET search

 

GET (SELECT): Remove the resource from the server (one or more).

POST (CREATE): a new resource on the server.

PUT (UPDATE): update the resource (after the complete resources provided by the client to change) in the server.

PATCH (UPDATE): Updating Resource (provided by the client to change the properties) in the server.

DELETE (DELETE): Delete the resource from the server.
----------------
Disclaimer: This article is CSDN blogger "lrz136 'original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement. .
Original link: https: //blog.csdn.net/l13620804253/article/details/89924166

Guess you like

Origin www.cnblogs.com/jokmangood/p/11705917.html