将大型参数化数据集作为 GET 请求发送 [英] Sending a large parametrized data set as a GET request

查看:32
本文介绍了将大型参数化数据集作为 GET 请求发送的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通过 GET 请求发送大型数据集的最佳方式是什么.

What's the best way to send a large data set via a GET request.

  • 由于某些设计限制,我无法使用 POST.
  • 我可以使用 jQuery 或任何其他库,最好使用 sizzle.
  • 我有一个复杂的数据集,其中包含嵌套,而 json 非常符合要求.

感谢您的帮助.

推荐答案

由于浏览器和服务器的限制,GET 请求的大小不应超过 1-4 KB.您必须将您的请求分成几块才能做到这一点.

GET requests shouldn't exceed 1-4 kilobytes in size due to browser and server limitations. You would have to split your request in chunks to do this.

如果数据来自表单,例如,您可以使用 jQuery 的 .serialize() 函数将数据放入一个字符串中.然后将字符串拆分为千字节大小的块并使用 Ajax 将其发送出去.您必须有一个服务器端脚本将块重新粘合在一起,可能使用在 Ajax 请求中指定的唯一标识符.

If the data comes from a form, you could, for example utilize jQuery's .serialize() function to put the data into one string. Then split the string into kilobyte-sized chunks and send it out using Ajax. You would have to have a server-side script that glues the chunks back together, possibly using a unique identifier specified in the Ajax requests.

关于长度限制的一些来源:

Some sources on the length limitation:

  • MSDN: Maximum URL length is 2083 characters in Internet Explorer
  • Various server and browser tests, from 2006 but should still give a half-way representative overview

这篇关于将大型参数化数据集作为 GET 请求发送的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆