且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

httpget和httppost的限制

更新时间:2022-11-27 22:13:47

请参阅 HTTP方法:GET与POST [ ^ ]。

Refer- HTTP Methods: GET vs. POST[^].
Quote:



数据长度限制



对于GET - >是的,在发送数据时,GET方法将数据添加到URL;并且URL的长度是有限的(最大URL长度是2048个字符)



For Post - >没有限制


Restrictions on data length

For GET-> Yes, when sending data, the GET method adds the data to the URL; and the length of a URL is limited (maximum URL length is 2048 characters)

For Post-> No restrictions



另请参阅 HTTP GET的最大长度请求? [ ^ ]。