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

How to add new line in CSV generated by jQuery?

我有一个需要生成为 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; 2020\r\n101; true; P; 20; br; 2020\r\n101; true; P; b; br; 2020

它没有中断行,而是继续,就好像 \r\n 是一个字符串。

来自 by user freedomn-m,哪个 OP 回复了 'solved' 他们的问题:

使用这个:

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