我想从Javascript创建一个文本文件。用户将提交表单,表单将有多种选择。用户将选择适当的答案并单击“提交”按钮。现在这些答案将放在该文本文件中。为了设计这个,我创建了HTML文件。现在我的Javascript有问题。请告诉我,有没有其他方式而不是JavaScript?
答案 0 :(得分:3)
使用 String 您想要的任何文字
var str = 'Hello world!';
1。使用 MIME 类型 text / plain
创建Blobvar b = new Blob([str], {type: 'text/plain'});
2。从 Blob
生成网址var fileURL = URL.createObjectURL(b);
3。用您喜欢的方式指向您的用户,例如
window.open(fileURL, '_blank');
或者,如果你想下载这个
var a = document.createElement('a'),
e = document.createEvent("MouseEvents"); // simulated click
e.initMouseEvent("click", true, false, self,
0, 0, 0, 0, 0, false, false, false, false, 0, null);
a.setAttribute('href', fileURL);
a.setAttribute('target', '_blank'); // fallback behaviour
a.setAttribute('download', 'myTextFile.txt'); // file name
a.dispatchEvent(e); // download