phonegap (iOS) で画像を削除しようとしているので、次のように呼び出します。
window.resolveLocalFileSystemURI(imageURI, ok, no);
これはok関数を呼び出します
function ok(entry) {
alert("Deleting: " + entry.name);
entry.remove();
}
したがって、すべてが計画どおりに進みますが、私の画像はまだ私のライブラリに表示されます. 私は何を間違っていますか?
完全なソース:
window.resolveLocalFileSystemURI(imageURI, ok, no);
function ok(entry) {
alert("Delete file entry: " + entry.name);
entry.remove(pictureRemoved, notRemoved);
}
function pictureRemoved(){
alert('removed');
}
function notRemoved(){
alert('not Removed');
}
function no(error) { alert
("resolveFileSystemURI failed: " + error.code); }