4

我正在构建一个基本的应用程序,它具有相当多的 PhoneGap 功能,因为我试图确定它可以/不能做什么。我已经到了要删除已在应用程序上下载的文件的阶段,但它不起作用。我使用的大部分代码来自http://docs.phonegap.com/en/2.4.0/cordova_file_file.md.html#FileEntry

    function removefile(){
        fileSystem.root.getFile("readme.txt", {create: false, exclusive: false}, gotRemoveFileEntry, fail);

    }

    function gotRemoveFileEntry(fileEntry){
        console.log(fileEntry);
        fileEntry.file(gotFile, fail);
        entry.remove(success, fail);
    }

    function success(entry) {
        console.log("Removal succeeded");
    }

    function fail(error) {
        console.log("Error removing file: " + error.code);
    }

我用 HTML 调用它;

    <button onclick="removefile();">remove file</button>

代码有问题吗?我看不到它。

顺便说一句,我正在为 iOS 编码并在 Xcode 中使用 JavaScript、HTML 和 PhoneGap/Cordova。

我对 iPhone 开发相当陌生,所以任何帮助都会非常感谢:)

4

2 回答 2

5

Your code is slightly off. Try:

function removefile(){
    fileSystem.root.getFile("readme.txt", {create: false, exclusive: false}, gotRemoveFileEntry, fail);
}

function gotRemoveFileEntry(fileEntry){
    console.log(fileEntry);
    fileEntry.remove(success, fail);
}

function success(entry) {
    console.log("Removal succeeded");
}

function fail(error) {
    console.log("Error removing file: " + error.code);
}
于 2013-02-19T19:16:07.447 回答
0

旧条目。API可能已经改变,但我能够这样做:

function success(entry) {
  console.log("Removal succeeded");
}

function fail(error) {
  console.log("Error removing file: " + error.code);
}

resolveLocalFileSystemURL(cordova.file.dataDirectory + 'assets/icons/test.png', function(entry) {
  console.log(entry);
  entry.remove(success, fail);
})
于 2016-02-07T04:43:28.400 回答