美文网首页
vue json 里的文件解码

vue json 里的文件解码

作者: 草小孟 | 来源:发表于2023-06-23 23:02 被阅读0次
    const decodeContent = atob(fileResponse.fileContent);/// 需要手动解码
    const uint8Array = new Uint8Array(decodeContent.length);for (let i = ; i < decodeContent.length; i++) [uint8Array[i] = decodeContent.charCodeAt(i);
    const blob = new Blob([uint8Array]);const filename = fileResponse.filename;const link = document .createElement('a');link.href = URL.createObjectURL(blob);link.download = filename;link.click();
    

    相关文章

      网友评论

          本文标题:vue json 里的文件解码

          本文链接:https://www.haomeiwen.com/subject/aywvydtx.html