因此,我一直在尝试学习本机对应用程序开发的反应,并且我一直在处理许多错误,试图使一个非常简单的应用程序运行。我不得不删除node_modules并重新安装yarn。现在,在解决了我之前遇到的大量错误之后,现在当我尝试运行它时,我的cmd中收到了以下错误:
error: unknown option `--assetPlugins'
Metro Bundler process exited with code 1
Set EXPO_DEBUG=true in your env to view the stack trace.
error Command failed with exit code 1.
从今年早些时候开始,我在这里发现了一个类似的问题,但是针对该问题的解决方案似乎是正确更新了expo版本,但是几天前我刚开始教程时就安装了expo。另外,我的app.js文件中的唯一代码如下:
import React, {useState} from 'react';
import { StyleSheet, Text, View, Button } from 'react-native';
export default function App() {
const[outputText, setOutputText] = useState('New State');
return (
<View style={styles.container}>
<Text>{outputText}</Text>
<Button title="Change Text" onPress={() => setOutputText('the text changed')}/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
所以我不知道如何调试它,我是完全陌生的。先谢谢您的帮助。我对反应感到非常沮丧,我已经尝试了一个多星期,以完成一个简单的教程,而且在此过程的每个步骤中,我始终遇到错误...