4

是否有可以从 Firefox / Chrome 中的 Blob 切片重新组装 Blob 的功能。即执行 slice() 操作的反向操作?

TIA

4

1 回答 1

4

Blob构造函数本身可以做到这一点

var b1 = new Blob(['abcdef']), // Inital Blob
    b2,                        // re-created Blob to go here
    s1 = b1.slice(0, 3),       // a slice
    s2 = b1.slice(3, 6);       // another slice

// now reverse the slicing
b2 = new Blob([s1, s2]);
b2.size; // 6

如果你真的想仔细检查

var f = new FileReader();
f.onload = function () {console.log(this.result);};
f.readAsText(b1); // "abcdef"
f.readAsText(b2); // "abcdef"
// and the slices
f.readAsText(s1); // "abc"
f.readAsText(s2); // "def"
于 2013-06-16T18:32:44.353 回答