我想使用cordova相机插件从我的图片库中选择一张图片,但总是会出现同样的错误
'Wrong type for parameter "uri" of resolveLocalFileSystemURI: Expected String, but got Null'
这是我的代码,它类似于github上的cordova-plugin-camera repo,但我仍然得到同样的错误
var options = {
destinationType : Camera.DestinationType.FILE_URI,
sourceType : Camera.PictureSourceType.PHOTOLIBRARY,
allowEdit : false,
//encodingType: Camera.EncodingType.JPEG,
popoverOptions: CameraPopoverOptions,
mediaType: Camera.MediaType.PICTURE,
correctOrientation: true
};
$cordovaCamera.getPicture(options).then(function(imageData) {
})
imageData始终为null。我不知道为什么这个错误,因为文档说这是正确的wat。