有没有可以从Firefox / Chrome中的Blob片段重新组合Blob的功能.即执行slice()操作的相反操作?
TIA
解决方法:
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"