作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我需要通过 XmlHttpRequest
下载一个大的 (>100MB) 数据文件。数据来自第三方,我想在下载内容时逐渐显示内容。
所以我认为以下方法可行:
var req = new XMLHttpRequest();
req.open( "GET", mirror.url, true );
req.responseType = "arraybuffer";
req.onload = function( oEvent ) {
console.log( "DONE" );
};
var current_offset = 0;
req.addEventListener("progress", function(event) {
if( event.lengthComputable ) {
var percentComplete = Math.round(event.loaded * 100 / event.total);
}
var data = req.response;
// Fails here: req.response is null till load is called
var dataView = new DataView( data );
while( current_offset < dataView.byteLength ) {
// do work
++current_offset;
}
console.log( "OFFSET " + current_offset + " [" + percentComplete + "%]" );
}, false);
try {
req.send( null );
} catch( er ) {
console.log( er );
}
遗憾的是,根据规范,.response
不可用。
有没有什么方法可以访问已经下载的数据而不用像使用 Flash
这样可怕的解决方法?
编辑:
至少找到了一个适用于 Firefox 的非标准解决方案:
responseType = "moz-chunked-arraybuffer";
另请参阅:WebKit equivalent to Firefox's "moz-chunked-arraybuffer" xhr responseType
最佳答案
一种解决方案是使用范围请求仅下载文件的一部分以仅下载文件的一部分。有关详细信息,请参阅以下博客文章 HTTP Status: 206 Partial Content and Range Requests .
如果您可以控制服务器,您还可以在服务器端拆分文件并下载其中的 block 。这样您就可以在收到不同的 block 时访问响应。
第三种方法是使用 WebSockets下载数据。
如果您无法控制要从中下载的服务器,并且其他选项都不起作用,则您可能需要实现一个代理服务,该服务将充当中间件并允许您只下载其中的一部分。
关于javascript - 访问已下载的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15297225/
我是一名优秀的程序员,十分优秀!