3

我目前正在使用 Phonegap 技术开发适用于 android 的应用程序,供您参考,我的应用程序概念如下

  1. 抓图(默认Phonegap会在本地存储缓存图片:即图片路径为(file://androidappnames/cache/21323213.jpg)

  2. 检索图像

  3. 对图像做一些工作。

问题是,如何删除缓存图像?

4

2 回答 2

2

出于删除目的,我们可以使用如下文件 API:

function removeAllCache(){
window.resolveLocalFileSystemURL(cordova.file.externalCacheDirectory, gotDirRemove, function(error){});

}

function gotDirRemove(entry){
var directoryReader = entry.createReader();
directoryReader.readEntries(function(entries) {
    var i;
    for (i = 0; i < entries.length; i++) {
        entries[i].remove(function(file){
        },function(error){
            });
    }
},function(){});
}
于 2016-05-18T08:09:30.793 回答
1

此代码不会删除缓存,但会阻止使用缓存数据。

var success = function(){};
var error = function(){};


navigator.camera.getPicture(success, error,
    {
        quality: 99,
        destinationType: Camera.DestinationType.DATA_URL,
        sourceType: Camera.PictureSourceType.CAMERA,
        encodingType: Camera.EncodingType.PNG,
        correctOrientation: true,
        allowEdit: true
    }
);  

设置destinationTypeCamera.DestinationType.DATA_URL而不是Camera.DestinationType.FILE_URI

在此处阅读更多信息:http: //docs.phonegap.com/en/2.9.0rc1/cordova_camera_camera.md.html

于 2014-11-12T15:56:44.160 回答