문제

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