1、在 react 中使用2、从后台接受的是 json 数据 ,将 json 转换为 CSV3、用户点击 button 按钮 下载该 CSV 文件
请问该如何实现?
认证高级PHP讲师
不涉及react
const data = "..." // 这里填CSV内容的字符串 const blob = new Blob([data], {type: "text/plain"}) const link = document.createElement("a") link.href = URL.createObjectURL(blob) link.download = "filename.csv" // 这里填保存成的文件名 link.click() URL.revokeObjectURL(link.href)
不涉及react