我是 PhoneGap 的新手,我在 Xcode 中使用它。
谁能告诉我如何在 index.html 中找到文档目录的绝对路径?
Best Answer-推荐答案 strong>
function success(fileSystem) {
var path = fileSystem.root.fullPath;
}
// request the persistent file system
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, null);
path 应该指向 /Documents 。
关于ios - phonegap iphone : Documents Directory Absolute path,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/7608767/
|