Blob을 연구하고 있었는데 ArrayBuffer가 있으면 다음과 같이 쉽게 Blob으로 변환 할 수 있습니다.
var dataView = new DataView(arrayBuffer);
var blob = new Blob([dataView], { type: mimeString });
지금 내가 가진 질문은 Blob에서 ArrayBuffer로 이동할 수 있습니까?
답변
Response
API는 (불변) 소비 Blob
데이터를 여러 가지 방법으로 검색 할 수있는합니다. 영업 이익 만을 요구 ArrayBuffer
하고, 여기의 데모입니다.
var blob = GetABlobSomehow();
// NOTE: you will need to wrap this up in a async block first.
/* Use the await keyword to wait for the Promise to resolve */
await new Response(blob).arrayBuffer(); //=> <ArrayBuffer>
또는 이것을 사용할 수 있습니다.
new Response(blob).arrayBuffer()
.then(/* <function> */);
참고 : 이 API 는 이전 ( 고전 ) 브라우저 와 호환되지 않으므로 브라우저 호환성 표 를 확인하여 안전한 편이되도록하십시오.)
답변
당신이 사용할 수있는 FileReader
내용을 읽어을 Blob
int로서 ArrayBuffer
.
다음은 간단한 예입니다.
var arrayBuffer;
var fileReader = new FileReader();
fileReader.onload = function(event) {
arrayBuffer = event.target.result;
};
fileReader.readAsArrayBuffer(blob);
다음은 더 긴 예입니다.
// ArrayBuffer -> Blob
var uint8Array = new Uint8Array([1, 2, 3]);
var arrayBuffer = uint8Array.buffer;
var blob = new Blob([arrayBuffer]);
// Blob -> ArrayBuffer
var uint8ArrayNew = null;
var arrayBufferNew = null;
var fileReader = new FileReader();
fileReader.onload = function(event) {
arrayBufferNew = event.target.result;
uint8ArrayNew = new Uint8Array(arrayBufferNew);
// warn if read values are not the same as the original values
// arrayEqual from: http://stackoverflow.com/questions/3115982/how-to-check-javascript-array-equals
function arrayEqual(a, b) { return !(a<b || b<a); };
if (arrayBufferNew.byteLength !== arrayBuffer.byteLength) // should be 3
console.warn("ArrayBuffer byteLength does not match");
if (arrayEqual(uint8ArrayNew, uint8Array) !== true) // should be [1,2,3]
console.warn("Uint8Array does not match");
};
fileReader.readAsArrayBuffer(blob);
fileReader.result; // also accessible this way once the blob has been read
이는 Chrome 27 ~ 69, Firefox 20 ~ 60 및 Safari 6 ~ 11의 콘솔에서 테스트되었습니다.
다음과 같이 플레이 할 수있는 라이브 데모도 있습니다 : https://jsfiddle.net/potatosalad/FbaM6/
업데이트 2018-06-23 :event.target.result
대 에 대한 팁을 주신 Klaus Klein에게 감사드립니다 .this.result
참고:
답변
@potatosalad의 대답을 보완하기 위해.
onload 콜백 에서 결과를 얻기 위해 실제로 함수 범위 에 액세스 할 필요가 없습니다 . 이벤트 매개 변수 에서 다음을 자유롭게 수행 할 수 있습니다 .
var arrayBuffer;
var fileReader = new FileReader();
fileReader.onload = function(event) {
arrayBuffer = event.target.result;
};
fileReader.readAsArrayBuffer(blob);
왜 이것이 더 낫습니까? 컨텍스트를 잃지 않고 화살표 기능을 사용할 수 있기 때문에
var fileReader = new FileReader();
fileReader.onload = (event) => {
this.externalScopeVariable = event.target.result;
};
fileReader.readAsArrayBuffer(blob);
답변
또는 fetch API를 사용할 수 있습니다.
fetch(URL.createObjectURL(myBlob)).then(res => res.arrayBuffer())
성능 차이가 무엇인지 모르겠으며 DevTools의 네트워크 탭에도 표시됩니다.
답변
이 지금 (크롬 76+ & FF 69+)를 Blob.prototype.arrayBuffer () 약속이 물방울의 데이터를 나타내는 ArrayBuffer으로 해결 반환 방법.
(async () => {
const blob = new Blob(['hello']);
const buf = await blob.arrayBuffer();
console.log( buf.byteLength ); // 5
})();