gpt4 book ai didi

javascript - 如何使用 FileSystem API 的 window.requestFileSystem?

转载 作者:行者123 更新时间:2023-11-28 03:20:04 25 4
gpt4 key购买 nike

我用 javascript 写了下面的代码:

javascript代码:

var fs=null;

function initFS() {
window.requestFileSystem =window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem (window.TEMPORARY, 1024 * 1024, function (filesystem) {
fs = filesystem;
}, errorHandler);
}

html代码:

<input type="button"  id="button2" name="click" value="show" onclick="initFS();" />

但在 initFS 函数中单击显示按钮后,在行 window.requestFileSystem (window.TEMPORARY, 1024 * 1024, function (filesystem) {
它显示错误为“未捕获的类型错误”。我的代码有什么错误吗?

最佳答案

你不能定义errorHandler

var fs=null; 


function initFS() {
window.requestFileSystem =window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(window.TEMPORARY, 1024 * 1024, function (filesystem) {
fs = filesystem;
console.log(fs);
}, errorHandler);
}
function errorHandler(e) {
console.log(e); // it show everything that you want
}

关于javascript - 如何使用 FileSystem API 的 window.requestFileSystem?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24957595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com