PhoneGap文件删除无法正常工作

时间:2013-02-19 16:52:06

标签: javascript html xcode cordova

我正在构建一个基本的应用程序,其功能非常重要,因为我正在尝试确定它能做什么/不能做什么。我已经到了我希望删除已在应用程序上下载的文件的阶段,但它不会工作。我使用的大多数代码来自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开发相当新,所以任何帮助都会非常好,非常感谢:)

2 个答案:

答案 0 :(得分:5)

您的代码略有偏差。尝试:

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);
}

答案 1 :(得分: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);
})