我正在尝试使用PhoneGap来获取存储在我的Android手机中的照片和视频的库,
这是我的代码,但问题是我只能看到图片但没有视频。
我想要的是当我打开一个画廊时我想要显示图像和视频,截至目前我只能看到图像。我已将mediaType
指定为ALLMEDIA
,但没有效果。
navigator.camera.getPicture(
uploadPhoto,
function(message) { alert('get picture failed'); },
{
quality : 50,
destinationType : navigator.camera.DestinationType.FILE_URI,
sourceType : navigator.camera.PictureSourceType.PHOTOLIBRARY,
mediaType : navigator.camera.ALLMEDIA
}
);
});
答案 0 :(得分:0)
我找到了解决方案,我的代码中有一个错误,我写了navigator.camera.ALLMEDIA
而不是navigator.camera.MediaType.ALLMEDIA