在客户端使用chrome浏览器中的javascript创建文件

我想知道是否可以创建文本文件并将其保存在使用javascript的用户“下载”部分中。我的功能的工作方式是当用户单击“提交”按钮时,我将用户信息填充到文本文件中,然后将其保存在他的计算机中。我想这在谷歌浏览器中工作。

这可能吗?我看到过一些帖子专门告诉我这是一个严重的安全问题。

回答:

window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;

 window.requestFileSystem(window.TEMPORARY, 1024*1024, function(fs) {

fs.root.getFile('test.bin', {create: true}, function(fileEntry) { // test.bin is filename

fileEntry.createWriter(function(fileWriter) {

var arr = new Uint8Array(3); // data length

arr[0] = 97; // byte data; these are codes for 'abc'

arr[1] = 98;

arr[2] = 99;

var blob = new Blob([arr]);

fileWriter.addEventListener("writeend", function() {

// navigate to file, will download

location.href = fileEntry.toURL();

}, false);

fileWriter.write(blob);

}, function() {});

}, function() {});

}, function() {});

以上是 在客户端使用chrome浏览器中的javascript创建文件 的全部内容, 来源链接: utcz.com/qa/430245.html

回到顶部