JSON 中的最大 HTTP GET 方法
我正在使用 GWT 的 JSONP 执行 HTTP GET。URL
包含 +1000 个字符。 问题是请求未到达服务器
您是否发现 HTTP URL 的长度存在问题?因为当我确实请求具有更少字符(+500 个字符)的同一服务器时,我让它工作。
顺便说一句,这似乎是 IE8 独有的问题。
谢谢?
I am doing an HTTP GET with JSONP from GWT..
The URL contains +1000 character.
The problem is the request doesn't reach the server
Do you see the problem here in the length of the HTTP URL? as when I do request the same server with fewer characers (+500 character) I get it working..
BTW, it appears to be IE8-only issue.
Thanks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 有最大长度,但 1000 个字符应该没问题。如此处所述: http://support.microsoft.com/kb/q208427/ IE 应该最多可处理 2,083 个字符。
无论如何:建议针对如此大的数据集发表帖子。 POST 没有这些限制。
There is a maximum lenght for IE, but 1000 chars should be fine. As documented here: http://support.microsoft.com/kb/q208427/ IE should handle upto 2,083 characters.
In any case: it is recommended to do posts for such large datasets. POST does not have these limits.