vue base64转成文件流

我们可以使用 JavaScript 的 File API 将 base64 编码转换为文件流。

在 Vue 中,你可以使用以下代码实现这一点:

// 将 base64 编码转换为 Uint8Array
const binary = atob(base64String);
const array = [];
for (let i = 0; i < binary.length; i++) {
  array.push(binary.charCodeAt(i));
}
const file = new Uint8Array(array);

// 使用 File API 创建 Blob 

你可能感兴趣的:(vue.js,javascript,前端,ecmascript,前端框架)