作为GET请求发送大型参数化数据集

编程入门 行业动态 更新时间:2024-10-27 18:26:33
本文介绍了作为GET请求发送大型参数化数据集的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

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

  • 由于某些设计限制,我无法使用POST。
  • 我可以使用jQuery或任何其他库,但最好使用sizzle。
  • 我有一个嵌套在其中的复杂数据集,并且json符合该帐单很好。

感谢您的帮助。

解决方案

由于浏览器和服务器的限制,GET请求的大小不应超过1-4千字节。如果数据来自表单,例如,您可以使用jQuery的 //api.jquery/serialize/rel =noreferrer> .serialize() 函数将数据放入一个字符串中。然后将字符串拆分为千字节大小的块并使用Ajax将其发送出去。您必须有一个服务器端脚本,将块组合在一起,可能使用Ajax请求中指定的唯一标识符。

长度限制的一些来源:

  • MSDN:最大网址长度在Internet Explorer中为2083个字符 来自2006年的各种服务器和浏览器测试,但仍应提供一个中途代表性概览

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

  • I cannot use POST because of some design limitations.
  • I can use jQuery or any other library, sizzle is preferable.
  • I have a complex data set that has nestings within it, and json fits the bill well.

Thanks for your help.

解决方案

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.

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请求发送大型参数化数据集

本文发布于:2023-10-29 13:24:38,感谢您对本站的认可!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:参数   数据

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!