如何在iOS上使用PhoneGap从照片库中获取图片?

前端之家收集整理的这篇文章主要介绍了如何在iOS上使用PhoneGap从照片库中获取图片?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用以下代码尝试从iOS照片库中选择一张照片:
navigator.camera.getPicture(this.onCaptureSuccess,this.onCaptureFail,{
    allowEdit: true,correctOrientation: true,destinationType: Camera.DestinationType.FILE_URI,soureType: Camera.PictureSourceType.PHOTOLIBRARY,targetHeight: 315,targetWidth: 320
});

我在iPhone 5s和PhoneGap 3.3.0上使用iOS 7(7.0.4).无论我做什么,总是带上相机.我究竟做错了什么?

解决方法

想想我找到了:
soureType: Camera.PictureSourceType.PHOTOLIBRARY,

应该:

sourceType: Camera.PictureSourceType.PHOTOLIBRARY,

sourceType中有一个拼写错误.也许就是这样吗?

猜你在找的iOS相关文章