从blob切片创建blob

时间:2013-06-16 17:08:37

标签: javascript html5 filereader

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

TIA

1 个答案:

答案 0 :(得分:3)

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"