小编典典

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

javascript

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

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


阅读 988

收藏
2020-05-01

共1个答案

小编典典

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() {});
2020-05-01