我已经使用 XMLHTTPRequest 实现了一个“下载器”,我用它来使用 javascript 下载文件和部分文件。对于测试,也许还有现实世界的场景,我想限制这个下载器占用的带宽。
我想到的一个选择是使用 setTimeout 一遍又一遍地停止和启动下载器。这将停止下一个 http 块的下载。但这实在是太丑了……
我可以以某种方式停止下一个块请求吗?也许通过在 onreadystatechange 事件中放置一些延迟。这是代码:
download:function (start, end) {
var xhr = new XMLHttpRequest();
xhr.open("GET", this.url, true);
if (end) {
xhr.setRequestHeader("Range", "bytes=" + start + "-" + end);
}
else {
if (start && start > 0) {
xhr.setRequestHeader("Range", "bytes=" + start);
}
else {
start = 0;
}
}
// Hack to pass bytes through unprocessed.
xhr.overrideMimeType('text/plain; charset=x-user-defined');
thi$ = this;
xhr.onreadystatechange = function() {
if (this.stopped) {
xhr.abort();
}
if (typeof this.index == "undefined")
this.index = 0;
if (this.readyState >= 3 && this.status == 200) {
var content = this.responseText;
thi$.handleContent( content.substring(this.index), this.index);
this.index = content.length;
}
}
xhr.send(null);
}