如何从JSON对象中存储的缓冲区中下载文件?

时间:2019-07-14 05:24:08

标签: javascript json reactjs download buffer

我有一个包含文件缓冲区数据的JSON对象。我想从缓存中下载该文件。 当我console.log时,它是这样的: enter image description here

fileBinary是包含我的缓冲区数据的对象

我尝试做:

window.open(JSON.stringify(data.data.fileBinary.data))

但这没用。

我也尝试过将其转换为类似缓冲区

const Buf = Buffer.from(JSON.stringify(data.data.fileBinary.data))
window.open(Buf)

但是这挂起了我的浏览器,Chrome最终没有响应。

0 个答案:

没有答案