我使用phonegap开发移动应用程序。要从电话库中获取照片,我使用phonegap api navigator.camera.getPicture
。
我的代码如下:
function selectPicture() {
navigator.camera.getPicture(
function (uri) {
var img = document.getElementById('camera_image');
img.style.visibility = "visible";
img.style.display = "block";
img.src = uri;
},
function (e) {
console.log("Error getting picture: " + e);
},
{ quality: 50, destinationType: navigator.camera.DestinationType.FILE_URI, sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY });
}
这个功能在android中运行良好,但遗憾的是它在WindowPhone8模拟器中不起作用。 哪里不对了?期待您的解决方案。 非常感谢。