未定义不是对象(评估'_$$_REQUIRE(_dependencyMap[5], "expo-camera").Camera')
2022-02-06
2255
我试图在我的设备上安装 expo 相机, 但一直遇到问题。我只做了 3 件事
- expo 安装 expo-camera。
- 将示例代码复制到我的项目中。
- 将 expo 相机添加到 package.json。
我遵循了本教程: https://docs.expo.dev/versions/latest/sdk/camera/
我认为问题可能是:
在托管应用中,相机需要 Permissions.CAMERA。视频录制需要 Permissions.AUDIO_RECORDING。
我不知道该怎么做。
很高兴知道:
- 我还尝试安装 React Native 相机 https://react-native-camera.github.io/react-native-camera/docs/installation 。当然没有成功 :(
Package.json:
{
"name": "untitled",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"react": "17.0.2",
"react-native": "0.67.2"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/runtime": "^7.16.7",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^27.4.6",
"eslint": "^7.32.0",
"jest": "^27.4.7",
"metro-react-native-babel-preset": "^0.67.0",
"react-test-renderer": "17.0.2",
"expo-camera": "~12.0.3"
},
"jest": {
"preset": "react-native"
}
}
Camera.js
import React, {useState, useEffect} from 'react';
import {StyleSheet, Text, View, TouchableOpacity} from 'react-native';
import {Camera} from 'expo-camera';
export default function App() {
const [hasPermission, setHasPermission] = useState(null);
const [type, setType] = useState(Camera.Constants.Type.back);
useEffect(() => {
(async () => {
const {status} = await Camera.requestCameraPermissionsAsync();
setHasPermission(status === 'granted');
})();
}, []);
if (hasPermission === null) {
return <View />;
}
if (hasPermission === false) {
return <Text>No access to camera</Text>;
}
return (
<View style={styles.container}>
<Camera style={styles.camera} type={type}>
<View style={styles.buttonContainer}>
<TouchableOpacity
style={styles.button}
onPress={() => {
setType(
type === Camera.Constants.Type.back
? Camera.Constants.Type.front
: Camera.Constants.Type.back,
);
}}>
<Text style={styles.text}> Flip </Text>
</TouchableOpacity>
</View>
</Camera>
</View>
);
}
const styles = StyleSheet.create({});
错误:
1个回答
更新
如果您想轻松使用任何 expo 模块,则需要安装“Expo Modules”。
If you are migrating from react-native-unimodules see this: https://expo.fyi/expo-modules-migration/
要在您的项目中安装 Expo Modules,请运行以下命令:
npx install-expo-modules
如果出现错误,请按照手动安装操作: https://docs.expo.dev/bare/installing-expo-modules/#manual-installation
旧版
我认为问题可能是您将 expo-camera 依赖项作为开发依赖项。
您可以尝试移动
{
...
devDependencies:{
"expo-camera": "~12.0.3"
}
...
}
至
{
...
dependencies:{
"expo-camera": "~12.0.3"
}
...
}
Abhishek Sah
2022-02-06