假设我们有一个对服务器的 ajax 调用:
1 var jSonCall =
2 $.ajax({
3 url: 'http://some_url.com/some_endpoint'
4 }).success(function(response) {
5 $(response).appendTo($('.some_div'));
6 });
7 return jSonCall;
在 chrome 中,我在链接的 jquery 文件中得到一个“Uncaught SyntaxError: Unexpected identifier”,这可能是由第 4 行引起的。
还说我在 Chrome 的网络选项卡中检查了请求的响应,发现响应是 18,000 行 html(*edit: +150,000 个字符)。参数'response'(应该是html的bookoos的jquery对象)是否有可能在某个地方截断了它,并且它只能容纳这么多的html?如果是这样,有谁知道硬限制是什么(最大字符数左右)?