gpt4 book ai didi

javascript - window.requestFileSystem 不工作

转载 作者:太空狗 更新时间:2023-10-29 13:07:53 26 4
gpt4 key购买 nike

我正在 Firefox、IE 9、Chrome 和 Opera 上尝试下面的代码,但是没有调用 onInitFs(fs) 函数。如果我在 window.requestFileSystem(window.PERSISTENT) 中的 onInitFs 添加“()” , 1024*1024, onInitFs, errorHandler) 该函数被调用但 fs 为空?有人知道如何解决这个问题吗?我在 Windows 7 上试过。非常感谢你的帮助。

<!DOCTYPE HTML>
`<html>
<head>
<script>
function errorHandler(e){
alert("errorrrr");
}
function onInitFs(fs){
alert("onInitFs");
}
function readClick(){
if (window.webkitRequestFileSystem) {
window.webkitRequestFileSystem(window.PERSISTENT, 1024*1024,onInitFs,errorHandler);
}
else {
window.requestFileSystem(window.PERSISTENT, 1024*1024, onInitFs, errorHandler);
}

alert("read finishsssss");
}
</script>
</head>
<body>
<input type="button" value="Read dir" onclick="readClick()">
<ul id="filelist"></ul>
</body>
</html>

最佳答案

只有 chrome 支持 requestFileSystem 作为 webkitRequestFileSystem 版本。

其他浏览器(FF6、IE9、Op11)都不支持

关于javascript - window.requestFileSystem 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6803064/

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