固定的;
我正在使用一个简单的 jQuery 从服务器下载文本,数据类型为 json。
$.get('http://169.254.100.5/ajax.php',{action:'p',i:'{$data['id']}'},function(data)
{
$.each(data.responses, function(i,response)
{
alert(response.longtext)
}
}
当 response.longtext 很短(少于 1000 个字符,如“hello world”)时,我没有问题,脚本运行正常。
当 response.longtext 很长(如一段 lorem ipsum)时,我得到一个解析器错误。
我做了一些实验并使用 $.ajax(...) 重写它并删除了 $.each 方法,但我仍然收到解析器错误。
error: function(XMLHttpRequest, textStatus, errorThrown)
{
alert("err: " + textStatus);
}