jquery - Cordova Ios 应用程序在相机访问时崩溃

标签 jquery cordova ios-camera

我正在 Windows 中创建一个 Cordova 应用程序(由于 Mac 不可用),使用 JQuery 进行 IO 并在 Phonegap 云上进行远程构建。但问题是,当我尝试通过 cordova-plugin-camera 从我的 iPhone(Os v-11.3) 的相机获取图像时,应用程序崩溃了。

config.xml:

<plugin name="cordova-plugin-camera" spec="~2.1.1">
        <variable name="CAMERA_USAGE_DESCRIPTION" value="App want to access your camera" />
        <variable name="PHOTOLIBRARY_USAGE_DESCRIPTION" value="App want to access your camera to upload images" />

 </plugin>

 <platform name="ios">
        <icon height="57" platform="ios" src="www/res/icon/ios/icon.png" width="57" />
........
........
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
              <edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
                <string>need camera access to take pictures</string>
            </edit-config>
            <edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
                <string>need photo library access to get pictures from there</string>
            </edit-config>
            <edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
                <string>need location access to find things nearby</string>
            </edit-config>
            <edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
                <string>need photo library access to save pictures there</string>
            </edit-config>

    </platform>

JS:

 function accessCamera(){
        var options =  setOptions(Camera.PictureSourceType.CAMERA);
        getPic(options);
    }
function setOptions(srcType) {
        var options = {
            // Some common settings are 20, 50, and 100
            quality: 50,
            destinationType: Camera.DestinationType.FILE_URI,
            // In this app, dynamically set the picture source, Camera or photo gallery
            sourceType: srcType,
            encodingType: Camera.EncodingType.JPEG,
            mediaType: Camera.MediaType.PICTURE,
            allowEdit: true,
            correctOrientation: true  //Corrects Android orientation quirks
        }
        return options;
    }



  function getPic(options){
        console.log(Camera.PictureSourceType);
        console.log("SourceTye: "+options.sourceType);
        try{
            navigator.camera.getPicture(function cameraSuccess(imageUri) {
               // $('#main_img').attr('src', imageUri);
               setAndUploadPic(imageUri);

            }, function cameraError(error) {
            console.debug("Unable to obtain picture: " + error, "app");

            }, options);
        }catch(err){
           // $('#exp').text(err.message);
        }

    }

但是一旦我访问相机,我的应用程序就会崩溃。

最佳答案

如果你在 xcode 上的模拟器中运行并查看控制台,你就可以看到发生了什么。根据我的经验,问题与NsCameraUsageDescription的plist设置有关,当应用程序崩溃时,控制台中存在一个特定的错误。 尝试将此行添加到相机插件的 plugin.xml 中,而不是上面发布的:

 <config-file target="*-Info.plist" parent="NSCameraUsageDescription">
     <string>For take user photo and upload photos.</string>
 </config-file>

 <preference name="PHOTOLIBRARY_USAGE_DESCRIPTION" default=" " />
 <config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
     <string>For upload photos.</string>
 </config-file>

 <config-file target="*-Info.plist" parent="NSLocationWhenInUseUsageDescription">
     <string>need location access to find things nearby</string>
 </config-file>

关于jquery - Cordova Ios 应用程序在相机访问时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49850223/

相关文章:

javascript - 对 jQuery 插件的操作始终是最后的选择?

ios - UIImageView 使其他 View 不一致

iOS/iPhone - 快速拍摄或连拍照片

javascript - 我如何用动态输入框求和总值?

javascript - 为什么不应用 ad 元素?

android - ionic 状态重置不起作用

ios - Ionic 和 iOS 10 构建中的使用描述问题

android - 将 GetFile 与 Phonegap 一起使用时的独占参数

ios - Cordova/Ionic 2 相机权限问题 iOS 10.2.1

jquery - 如何做侧滑子菜单?