ajax响应字节大小
我正在使用 jQuery 的 getJSONP,我想记录调用的持续时间和响应的大小,以便能够获得有关应用程序使用情况的一些统计信息。 这是一个跨域的ajax调用,所以我需要使用JSONP,但是由于JSONP调用不是使用XMLHttpRequest对象完成的,因此jquery的ajax的完整回调不会传递响应内容。
所以我的问题是如何从 JSONP 调用获取响应大小(内容长度)。
$.ajaxSetup(
{
complete:function(x,e)
{
log(x.responseText.length, x.responseText);
}
}
这里 x 是用于 JSON 调用的 XMLHttpRequest 对象,但对于 JSONP 调用是未定义的。
I'm using jQuery's getJSONP and I want to log the duration of the call and the size of the response to be able to have some statistics about the usage of my application.
This is a cross domain ajax call, so I need to use JSONP, but as the JSONP call is not done with an XMLHttpRequest object, the complete callback from jquery's ajax doesn`t pass the response content.
So my question is how to get the response size (content lenght) from a JSONP call.
$.ajaxSetup(
{
complete:function(x,e)
{
log(x.responseText.length, x.responseText);
}
}
here x is a XMLHttpRequest object for a JSON call , but for JSONP call is undefined.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以获取响应标头的“Content-Length”:
you can get the "Content-Length" of the response header: