gpt4 book ai didi

javascript - window.requestFileSystem() 函数的简单示例

转载 作者:搜寻专家 更新时间:2023-11-01 05:24:51 25 4
gpt4 key购买 nike

我有下一个问题:我尝试在 Chrome 中使用 window.requestFileSystem() 函数,但失败了。寻找我的步骤:

1) 我向 Chrome 添加了“允许从文件访问文件”标志(请参阅下面的 img):enter image description here

2)我重启了系统。

3) 然后我使用“允许文件访问文件”标志运行 Chrome。

4) 毕竟我尝试启动这个示例代码:

function onInitFs(fs) {
console.log('Opened file system: ' + fs.name);
}

function errorHandler(e)
{
console.log("Error");
}
window.requestFileSystem(window.TEMPORARY, 5*1024*1024 /*5MB*/, onInitFs, errorHandler);

但它失败了: enter image description here

我的行为有什么问题?

最佳答案

那是因为这个功能目前只有前缀可用,即 window.webkitRequestFileSystem

您可能会发现这个教程很有趣:http://www.html5rocks.com/en/tutorials/file/filesystem/

关于javascript - window.requestFileSystem() 函数的简单示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12748920/

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