无法获取 URL.createObjectURL 中的数据
Could not get the data in URL.createObjectURL
我只是好奇如何获取包裹在URL.createObjectURL
中的数据。
所以我写了下面的代码
function typedArrayToURL(typedArray, mimeType) {
return URL.createObjectURL(new Blob([typedArray.buffer], {type: mimeType}))
}
const bytes = Uint8Array.from("https://www.baidu.com/")
// const url = typedArrayToURL(bytes, 'text/html');
const url = typedArrayToURL(bytes, 'text/plain; charset=utf-8');
let blob = await (await fetch(url)).blob();
console.info(new Uint8Array(blob))
let ab = await (await fetch(url)).arrayBuffer();
console.info(new Uint8Array(ab))
blob 或 ab 22 的大小等于 "https://www.baidu.com/"
的长度,但其中的数据全为零。
intArray
需要整数。因此,您必须以正确的格式提供数据。
所以像
const bytes = Uint8Array.from("https://www.baidu.com/".split('').map(v=>v.charCodeAt(0)));
或
const encoder = new TextEncoder();
const bytes = Uint8Array.from(encoder.encode("https://www.baidu.com/"))
我只是好奇如何获取包裹在URL.createObjectURL
中的数据。
所以我写了下面的代码
function typedArrayToURL(typedArray, mimeType) {
return URL.createObjectURL(new Blob([typedArray.buffer], {type: mimeType}))
}
const bytes = Uint8Array.from("https://www.baidu.com/")
// const url = typedArrayToURL(bytes, 'text/html');
const url = typedArrayToURL(bytes, 'text/plain; charset=utf-8');
let blob = await (await fetch(url)).blob();
console.info(new Uint8Array(blob))
let ab = await (await fetch(url)).arrayBuffer();
console.info(new Uint8Array(ab))
blob 或 ab 22 的大小等于 "https://www.baidu.com/"
的长度,但其中的数据全为零。
intArray
需要整数。因此,您必须以正确的格式提供数据。
所以像
const bytes = Uint8Array.from("https://www.baidu.com/".split('').map(v=>v.charCodeAt(0)));
或
const encoder = new TextEncoder();
const bytes = Uint8Array.from(encoder.encode("https://www.baidu.com/"))