如何在url中将数组作为param发送?

时间:2016-02-26 05:56:52

标签: javascript ajax

xmlHttp.open( "GET", "/mcd/demo.jssp?array="+arr, false ).

如何在jssp中获取它? 我看起来像arr= [3214,2345,84834,4847,83474,3244,234834,........ 30k+ values]

1 个答案:

答案 0 :(得分:1)

网址的最大长度为2000 characters,因此您无法发送3万个数组项作为GET请求

发送类型为post

的请求
xhttp.open("POST", "/mcd/demo.jssp", true);
xhttp.send("array="+arr);