gpt4 book ai didi

ios - Cordova getDirectory 返回错误代码

转载 作者:可可西里 更新时间:2023-11-01 06:15:18 28 4
gpt4 key购买 nike

我正在尝试访问 cordova iOS 应用程序中的文件系统,但当我使用 getDirectory 方法时它总是返回错误代码 3 (ABORT_ERR)。

我正在使用以下代码:

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, fail);

function onFileSystemSuccess(fileSystem) {
console.log(fileSystem.name);
dataDir = fileSystem.root.getDirectory("ozzie", {create: true}, getDir, fail);
}

function getDir(dir) {
console.log("successfull got directory", dir);
}

function fail(error) {
console.log("error", error.code);
}

它向我返回 fileSystem.name(“持久性”),但它从未获取目录。这总是返回 error.code = 3,根据 phonegap 文档,它是 ABORT_ERR。

有没有人有过这种行为?

最佳答案

也许您的问题是您尝试创建两个目录,例如:directory1/directory2

在 iOS 中,您应该先创建一个,然后再创建另一个。

在 iPad 中,Documents 目录不存在。

关于ios - Cordova getDirectory 返回错误代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21827416/

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