我决定尝试 HTML5 文件系统 API,所以我从教程中输入了一个简单的示例:
window.addEventListener('load', function () {
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
function initFs (fs) {
console.log(fs);
}
function fsErr (err) {
console.log(err);
}
window.requestFileSystem(window.TEMPORARY, 5*1024*1024, initFs, fsErr);
});
当我运行它时,FileError
它记录了一个对象(代码为 2)。另外,我正在使用Windows(我这么说是因为我认为这可能与系统安全有关)
任何帮助表示赞赏!