0

我想在发生某些特定事件时从应用程序中删除与我的应用程序相关的完整数据库。

我怎样才能做到这一点?我正在使用 cordova 构建我的应用程序,我的应用程序适用于 Android 和 iOS 平台。

4

1 回答 1

1

尝试这样的事情:

function removefile(){
    fileSystem.root.getFile("/data/data/YourPackage/databases/YouDbName.db", {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-05-17T09:41:57.683 回答