Please answer the difference between get, post, delete and put

The GET method is used to request to query a resource without any impact on the data on the server; the POST method is used to send the data to be processed to the server; the DELETE method is used to request the server to delete a resource; the PUT method is used to send The server delivers the updated resource.

Guess you like

Origin blog.csdn.net/weixin_42605397/article/details/129537859