任何人都可以让我知道如何从相册中选择图片并通过回电获取文件-uri或base-64。
我可以从相机拍摄照片,但在从photoalbum中拾取图像时遇到问题。我使用下面的代码来选择图像,但在选择图像后,应用程序通过在控制台上发出此警告导航回主屏幕(index.html)“此页面上的代码禁用了后退和前进缓存。有关详细信息,见:http://go.microsoft.com/fwlink/?LinkID=291337“。
navigator.camera.getPicture(onSuccess, onFail,
{
quality: 50,
destinationType: Camera.DestinationType.FILE_URI,
mediaType: Camera.MediaType.PICTURE,
sourceType: Camera.PictureSourceType = {
PHOTOLIBRARY: 1,
CAMERA: 0,
SAVEDPHOTOALBUM: 2
},
mediaType: Camera.MediaType = {
PICTURE: 1, // allow selection of still pictures only. DEFAULT. Will return format specified via DestinationType
VIDEO: 0, // allow selection of video only, WILL ALWAYS RETURN FILE_URI
ALLMEDIA: 2 // allow selection from all media types
},
allowEdit: 1,
width: compRatio,
height: compRatio
});