You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Send a request to get a resource on the server
POST method
Submit data or attach new data to the resource specified by the URL
PUT method
Much like the POST method, it also wants the server to submit data. However, there are differences between them. PUT specifies the location of the resource on the server, but POST does not
The HEAD method
Only the beginning of the page is requested
The DELETE method
Delete a resource on the server
The OPTIONS method
It is used to get the method supported by the current URL. If the request is successful, there is an Allow header that contains information like "GET,POST.
The TRACE method
The TRACE method is used to fire a remote, application-layer request message loop
The CONNECT method
Convert the request connection to a transparent TCP/IP channel
Activity
webVueBlog commentedon Mar 10, 2020
The GET method
Send a request to get a resource on the server
POST method
Submit data or attach new data to the resource specified by the URL
PUT method
Much like the POST method, it also wants the server to submit data. However, there are differences between them. PUT specifies the location of the resource on the server, but POST does not
The HEAD method
Only the beginning of the page is requested
The DELETE method
Delete a resource on the server
The OPTIONS method
It is used to get the method supported by the current URL. If the request is successful, there is an Allow header that contains information like "GET,POST.
The TRACE method
The TRACE method is used to fire a remote, application-layer request message loop
The CONNECT method
Convert the request connection to a transparent TCP/IP channel