使用jQuery ajax GET请求可以传递的数据限制是多少?



这是对REST服务的跨域请求:

$.ajax({
                type: "GET",
                dataType: "jsonp",
                contentType: "application/javascript",
                data: d,
                //crossDomain: true,
                async: false,
                url:"http://xx.xx.xx.xx/MyService/MyService.svc/GetData",
                success: function (jsonData) {
                    console.log(jsonData);
                    alert('Hello');
                },
                complete: function (request, textStatus) {
                    console.log(request.responseText);
                    console.log(textStatus);
                },
                error: function (request, textStatus, errorThrown) {
                    console.log(request.responseText);
                    console.log(textStatus);
                    console.log(errorThrown);
                }
}); 

这里,对于data: d,我可以发送多少数据?有限制吗?

浏览器限制:它因浏览器而异。HTTP标准本身并没有施加限制。IE8限制是2083个字符。Firefox支持更高的限制。

Web服务器施加自己的限制,通常是可配置的。我想iis是2048字节

相关内容

  • 没有找到相关文章

最新更新