嘿,与您在Can I write files with HTML5/JS?
我将如何修改这个说 Excel 或 PDF。我试过但无法让它工作。当我将 MIME 更改为 application/pdf 时,我下载了一个损坏的文件
我试图将它链接到存储在 localstorage 中的数据,这些数据都在一个变量中。
我目前的代码是:
function setSaveFile(contents, file_name, mime_type) {
var a = document.getElementById('save');
mime_type = mime_type || 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; // text/html, image/png, et c
if (file_name) a.setAttribute('Log.xls', file_name);
a.href = 'data:'+ mime_type +';base64,'+ btoa(contents || 'Description' + ' ' + 'Notes' + ' ' + 'Date\n\n' + pdftimeLog);
}
我希望能够将其导出为带有每个标题的 CSV:日期、描述、不同单元格中的注释。我希望它适合移动设备。谢谢