为什么 window.requestFileSystemSync 未定义?
我正在使用 phonegap API 在 IOS 中开发。我需要同步检索存储目录。我正在尝试使用 window.requestFileSystemSync(LocalFileSystem.PERSISTENT,0)
但 window.requestFileSystemSync
是未定义
。有什么帮助吗?谢谢
I'm working with phonegap API developing in IOS. I need to retrieve the storage directory synchronously. I am trying to use window.requestFileSystemSync(LocalFileSystem.PERSISTENT,0)
but window.requestFileSystemSync
is undefined
. Any help? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 PhoneGap v1.1.0 的文档,有只是一个名为
requestFileSystem
的异步方法。According to the documentation of PhoneGap v1.1.0, there is only an asynchronous method to do this called
requestFileSystem
.我想到两件事:
Two things come to mind:
问题是,phonegap 没有定义同步文件系统。与异步版本有关。谢谢。
The problem was that, phonegap does not define sync file system. Will have to do with async version. Thanks.