编辑项目文件夹chrome中的文件

时间:2014-10-13 02:44:13

标签: javascript google-chrome google-chrome-extension

因此,如果我要制作一个Chrome打包的应用程序并将配置文件保存在我的项目文件夹中,我该如何使用chrome api读取/写入该文件?

chrome打包应用是否允许ajax调用? [如果可以,我可以使用ajax来读取配置文件] 可以chrome.fileSystem与项目文件夹中的文件进行交互吗?

我尝试使用web数据库将配置文件存储为persistent database而不是本地文件。这是更好的方法吗?

window.requestFileSystem(window.PERSISTENT, 100 * 1024 * 1024, function (filesystem) {
        fs = filesystem;
        console.log(fs);
        fs.root.getFile('test.txt',{create:true},function(entry) {
        console.log(entry);
        entry.createWriter(function(writer) {
            writer.write(new Blob([MYCONFIG]));
            console.log(entry);
        });
    });
    }, null);

0 个答案:

没有答案