我正在尝试获取从Android图像库中检索到的图像的完整路径。通过相机插件。
window.resolveLocalFileSystemURI("content://media/external/images/media/83", function(fileEntry) {
或
window.resolveLocalFileSystemURL(imageURI, function(fileEntry) {
fileEntry.file(function(fileObj) {
newimageURI = fileObj.fullPath;
alert(newimageURI);
});
});
返回undefined。
前几天有更新,它已不再有效。我也试过toURL()
但没有成功。
答案 0 :(得分:0)
尝试删除文件插件并重新添加。适合我。我认为这与此错误有关:Cordova iOS Plugins fail after building, unless I remove platform and plugin JSON first