如何在jQuery生成的CSV中添加新行?



我有一个需要生成为CSV的列表。

[101, true, P, b, br, 2020], [101, true, P, 20, br, 2020], [101, true, P, b, breach, 2020]

我写这个来转换它:

var link = document.createElement('a');
link.id = 'download-csv';
link.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(queries.toString().replaceAll("[","").replaceAll("],","\r\n").replaceAll(",",";").trim().replaceAll("]","")));
link.setAttribute('download', 'yourfiletextgoeshere.csv');
document.body.appendChild(link);
document.querySelector('#download-csv').click();

和生成的CSV文件是这样的:

101; true; P; b; br; 2020rn101; true; P; 20; br; 2020rn101; true; P; b; br; 2020

不断行,而是继续,好像rn是一个字符串。

来自用户freedom -m的评论,OP回应"解决"了他们的问题:

使用:

.replaceAll("],","\r\n") -> .replaceAll("],","rn")

相关内容

  • 没有找到相关文章

最新更新