我正在使用AJAX异步调用PHP脚本,该脚本返回JSON对象的大型序列化数组(大约75kbs或80k字符)。每次我尝试返回它都会达到3000个字符的限制。是否在服务器上或jQuery的ajax实现中设置了最大大小?
编辑:3'000限制是Chrome限制,FF限制为10'000,Safari没有限制。我猜测除了更改我的代码以分割/减少返回数据之外没有其他解决办法。
答案 0 :(得分:1)
你可以分割你的JSON并逐个获得$ .ajax
我为你做了一个例子
Html方面:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="jquery.js"></script>
<script>
$(document).ready(function() {
window.result_json = {};
$.get("x.php?part=size",function(data){
var count = data;
for (var i = 0; i <= count; i++) {
$.ajax({
dataType: "json",
url: "x.php",
async: false,
data: "part="+i,
success: function(data){
$.extend(window.result_json,data);
}
});
};
console.log(window.result_json);
});
});
</script>
</head>
<body>
</body>
</html>
PHP端(文件名为x.php):
<?php
if(isset($_GET['part'])){
function send_part_of_array($array,$part,$moo){
echo json_encode(array_slice($array, $part * $moo,$moo,true),JSON_FORCE_OBJECT);
}
$max_of_one = 3;
$a = array("a","b","c","d","e","f","g","h","i","j");
if($_GET['part'] == 'size'){
echo round(count($a) / $max_of_one);
}else{
send_part_of_array($a,$_GET['part'],$max_of_one);
}
}
?>
首先使用$.get
(part = size),检查切片数量。
其次使用$.ajax
(part =(int)PART-NUMBER),在for循环中逐个获取JSON的部分
最后,使用$.extend
for for循环marge,在window.result_json
中获取JSON和旧JSON元素
注意:$max_of_one
变量确定要发布的切片数量。