世博手机摄像头权限 windows 请勿在 IOS 中打开

Expo mobile camera permission windows don't open in IOS

你好吗 我正在建设世博会项目,我需要获得相机许可。 但它不会打开 windows 以获得许可

const { status1 } = await Permissions.getAsync(Permissions.CAMERA);
        if (status1 !== 'granted') {
            alert('please give CAMERA permission!')
        }
        const { status2 } = await Permissions.getAsync(Permissions.CAMERA_ROLL);
        if (status2 !== 'granted') {
            alert('please give CAMERA_ROLL permission!')
        }

我看到警告是因为没有权限, 但是没有显示windows允许,没办法。

我还能在哪里为 Expo 项目提供这些许可? 谢谢

Permissions.getAsync 更改为 Permissions.askAsync。有关详细信息,请参阅 here