我用离子框架创建一个应用程序。我安装了cordova-plugin-camera以通过我的设备选择和裁剪图像。但是当我尝试选择一个图像时,我总会收到错误“选择取消”
我的代码就是这个
var options = {
quality: 100,
destinationType: Camera.DestinationType.DATA_URL,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
mediaType: Camera.MediaType.PICTURE,
allowEdit: true,
encodingType: Camera.EncodingType.JPEG,
targetWidth: 500,
targetHeight: 500,
popoverOptions: CameraPopoverOptions,
saveToPhotoAlbum: false,
correctOrientation: true
};
navigator.camera.getPicture(function (imageData) {
var temp = scope.avatar;
scope.avatar = "data:image/jpeg;base64," + imageData;
}, function (err) { alert(JSON.stringify(err)); }, options);
我在调用getPicture函数时立即收到错误。然后在那之前我选择一张照片。为什么这个问题?提前谢谢
奇怪的是,直到前不久一切都运行良好,我尝试安装这个插件的旧版本,但错误是一样的。可能与其他插件冲突?我也尝试angular-js版本,但我有同样的错误我的插件列表就是这个
cordova-plugin-admobpro 2.26.0 "AdMob Plugin Pro"
cordova-plugin-background-mode 0.7.2 "BackgroundMode"
cordova-plugin-camera 2.3.1 "Camera"
cordova-plugin-compat 1.1.0 "Compat"
cordova-plugin-console 1.0.5 "Console"
cordova-plugin-device 1.1.4 "Device"
cordova-plugin-extension 1.5.1 "Cordova Plugin Extension"
cordova-plugin-fcm 2.1.1 "FCMPlugin"
cordova-plugin-firebase 0.1.19 "Google Firebase Plugin"
cordova-plugin-statusbar 2.1.3 "StatusBar"
cordova-plugin-whitelist 1.2.2 "Whitelist"
ionic-plugin-keyboard 1.0.9 "Keyboard"
答案 0 :(得分:11)
解决。我只是在config.xml文件中添加此首选项
<preference name="AndroidLaunchMode" value="standard"/>