forked from orbit-oss/flask
might -> must
This commit is contained in:
parent
8171da88a4
commit
85ca089dde
1 changed files with 3 additions and 2 deletions
|
|
@ -217,7 +217,8 @@ very common:
|
||||||
`POST`
|
`POST`
|
||||||
The browser tells the server that it wants to *post* some new
|
The browser tells the server that it wants to *post* some new
|
||||||
information to that URL and that the server must ensure the data is
|
information to that URL and that the server must ensure the data is
|
||||||
stored and only stored once.
|
stored and only stored once. This is how HTML forms are usually
|
||||||
|
transmitting data to the server.
|
||||||
|
|
||||||
`PUT`
|
`PUT`
|
||||||
Similar to `POST` but the server might trigger the store procedure
|
Similar to `POST` but the server might trigger the store procedure
|
||||||
|
|
@ -226,7 +227,7 @@ very common:
|
||||||
reasons to do that. Consider the connection is lost during
|
reasons to do that. Consider the connection is lost during
|
||||||
transmission, in that situation a system between the browser and the
|
transmission, in that situation a system between the browser and the
|
||||||
server might sent the request safely a second time without breaking
|
server might sent the request safely a second time without breaking
|
||||||
things. With `POST` that would not be possible because it might only
|
things. With `POST` that would not be possible because it must only
|
||||||
be triggered once.
|
be triggered once.
|
||||||
|
|
||||||
`DELETE`
|
`DELETE`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue