我有一个Web应用程序,我在其中生成了一个巨大的JSON。我现在希望用户能够下载该JSON。因此,我使用以下代码:
function saveJSON() {
var data = JSON.parse(localStorage.getItem('result'));
var jsonResult = [];
for (i = 0; i < data.length; i++) {
var item = expandJsonInJson(data[i]);
lineToWrite = JSON.stringify(item, undefined, "\t").replace(/\n/g, "\r\n");
jsonResult.push(lineToWrite);
}
if (jsonResult.length != 0) {
console.debug(jsonResult);
saveText(jsonResult, 'logentries.txt');
} else {
$('#coapEntries')
.append('<li class="visentry">' + "Your query returned no data!" +
'</li>');
}
}
function saveText(text, filename) {
var a = document.createElement('a');
a.setAttribute('href', 'data:application/octet-stream;charset=utf-8,' + text);
a.setAttribute('download', filename);
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}
但是,生成的文件不包含任何换行符,它只是一行。我在调用saveText之前打印的控制台上的输出仍然包含换行符。任何人都可以告诉我为什么会发生这种情况以及如何在保存文件时阻止删除换行符?
问题在于不同OS上的不同行结尾。试试这个例子......
var json = '{\n\t"foo": 23,\n\t"bar": "hello"\n}';
var a = document.createElement('a');
document.body.appendChild(a);
a.setAttribute('href', 'data:application/json;charset=utf-8,' + encodeURIComponent(json));
a.setAttribute('download', 'test.json');
a.click();
var jsonWindows = '{\r\n\t"foo": 23,\r\n\t"bar": "hello"\r\n}';
a.setAttribute('href', 'data:application/json;charset=utf-8,' + encodeURIComponent(jsonWindows));
a.setAttribute('download', 'test (Windows).json');
a.click();
您最终可以检测主机操作系统并用\n
替换所有\r\n
。