Cordova resolveLocalFileSystemURL callbacks not fired
问题 I've been trying to run the following code but the callbacks [ok() and ko()] are not called. Using Worklight 6.2 (Cordova 3.4). function wlCommonInit() { window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, fail); window.resolveLocalFileSystemURL(cordova.file.applicationDirectory + "www/index.html", ok, ko); } function ko(e) { alert("NO"); } function ok(fileEntry) { alert("OK"); } On the other hand requestFileSystem callbacks are called regularly. 回答1: The code snippet in the