在客户端从Javascript(或任何其他方式)创建文本文件?

时间:2013-07-20 05:14:11

标签: javascript html5

我想从Javascript创建一个文本文件。用户将提交表单,表单将有多种选择。用户将选择适当的答案并单击“提交”按钮。现在这些答案将放在该文本文件中。为了设计这个,我创建了HTML文件。现在我的Javascript有问题。请告诉我,有没有其他方式而不是JavaScript?

1 个答案:

答案 0 :(得分:3)

使用 String 您想要的任何文字

var str = 'Hello world!';

1。使用 MIME 类型 text / plain

创建Blob
var 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