Home  >  Article  >  Backend Development  >  请教一上ajax从服务端读取返回字符串的长度 有没有限制 是多少呢

请教一上ajax从服务端读取返回字符串的长度 有没有限制 是多少呢

WBOY
WBOYOriginal
2016-06-13 13:01:091168browse

请问一下ajax从服务端读取返回字符串的长度 有没有限制 是多少呢
我知道用get和post向服务端发数据都是有长度限制的。那么请问一下ajax用回调函数http_request.onreadystatechange=chuli;

从服务端接受返回字符串的长度 有没有限制 是多少呢


------解决方案--------------------
理论上没有限制,但实际上受限于Javascript字符串类型的最大存储长度,不同的浏览器引擎,不同的操作系统,其结果可能不一样。
但我想无论如何都能满足你的需求,例如chrome的是2^28 512MB
------解决方案--------------------
post提交其实是无限制的……仅有的限制是你服务器httpd或者nginx的限制……
至于返回的数据也是没限制的……唯一的限制是你的浏览器撑不撑得住……

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article: PHP怎么调用动态URL Next article: 终究用什么框架