我是 PhoneGap 编程的新手。我的问题是
如何在 iOS 应用程序内部存储下载的 PDF 文件。这是我所拥有的:
function downloadFile() {
alert('start');
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, fail);
window.resolveLocalFileSystemURI("http://www.w3.org/2011/web-apps-ws/papers/Nitobi.pdf", onResolveSuccess, fail);
}
function onFileSystemSuccess(fileSystem) {
alert(fileSystem.name);
console.log(fileSystem.name);
}
function onResolveSuccess(fileEntry) {
alert('success');
console.log(fileEntry.name);
}
function fail(evt) {
console.log(evt.target.error.code);
}
我还添加了插件作为cordova插件添加https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git
但它不起作用。我们需要此 LocalSystem 的任何插件吗?请帮助我。