我需要获取文件名和文件路径。
我之前使用的代码是
$('#photo').on("click", function (e){
navigator.camera.getPicture(onSuccess, onFailure, {
destinationType: navigator.camera.DestinationType.FILE_URI,
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
});
function onSuccess(imageURI) {
window.resolveLocalFileSystemURI(imageURI, function(entry){
alert(entry.name);
}
function onFailure(message) {
alert("Error in uploading image...");
}
});
但现在这不会返回文件名和扩展名