1

我有一个需要生成为 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一个字符串一样继续。

4

1 回答 1

0

根据用户Freedomn-m的评论,OP 回应“解决”了他们的问题:

用这个:

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

于 2021-01-26T15:23:41.150 回答