Is there any other verb than GET that we may send with a straight html hyperlink?

Do you know any document that specify why a html hyperlink only use the GET method?

有帮助吗?

解决方案

No, links make GET requests.

They only make GET requests because it doesn't make sense for them to use any other standard verb. They can't POST because there is nothing to POST. They can't PUT for the same reason. They can't HEAD or OPTIONS because those verbs don't provide data useful to humans (other than developers doing debugging work). etc.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top