What is the difference Put and Post and Get?

Tech In Pieces發表於2020-10-30

The difference between put and post: post create new resource and put means update resource.
The difference between get and post: the parameters of get request are append behind the URL, and there are restrictions about the maximum length of URL. but the parameters of the post request are in the send() method, and it has not restrictions on the length, so we can add as many parameter as we want.

相關文章