gpt4 book ai didi

react-native - react native 错误: Super expression must either be null or a function

转载 作者:行者123 更新时间:2023-12-03 08:43:00 25 4
gpt4 key购买 nike

我在Android模拟器上尝试运行此应用程序时收到错误消息。我将“组件”更改为“React.Component”,但随后出现其他问题。
我的React,Node和JS版本是最新的。
问题是,我是新手,并从Viedo获得了此代码,但他没有犯错。

没有React.Component:

使用React.Component:



import React from 'react';
import {
StyleSheet,
Text,
View,
TextInput,
TouchableOpacity,
StatusBar,
Component,
} from 'react-native';

export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<StatusBar backgroundColor="#1e90ff" barStyle="light-content" />,
<Text style={styles.login}>Login</Text>,
<TextInput style={styles.input} placeholder="Username" />,
<TextInput
style={styles.input}
placeholder="Password"
secureTextEntry
/>
<View style={styles.btnContainer}>
<TouchableOpacity style={styles.userBtn}>
<text style={styles.btnText}>Login</text>
</TouchableOpacity>
<TouchableOpacity style={styles.userBtn}>
<text style={styles.btnText}>Text</text>
</TouchableOpacity>
</View>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
backgroundColor: '#1e90ff',
},
login: {
textAlign: 'center',
fontSize: 35,
margin: 10,
color: '#fff',
},
input: {
width: '80%',
backgroundColor: '#fff',
padding: 10,
marginBottom: 10,
height: 30,
},
btnContainer: {
flexDirection: 'row',
justifyContent: 'space-between',
width: '90%',
},
userBtn: {
backgroundColor: '#fff',
padding: 15,
width: '40%',
margin: 10,
},
btnText: {
fontSize: 25,
textAlign: 'center',
color: '#1e90ff',
},
});


有人能帮我吗?

最佳答案

1. TypeError: super 表达式必须为null或函数

要解决这个问题

import React, { Component } from 'react';

那你可以用
export default class App extends Component

2.永久违反:文本字符串必须在组件中呈现

要解决此问题,请删除 ,并进行更改
<text style={styles.btnText}>Login</text>


<Text style={styles.btnText}>Login</Text>

编辑
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<StatusBar backgroundColor="#1e90ff" barStyle="light-content" />
<Text style={styles.login}>Login</Text>
<TextInput style={styles.input} placeholder="Username" />
<TextInput
style={styles.input}
placeholder="Password"
secureTextEntry
/>
<View style={styles.btnContainer}>
<TouchableOpacity style={styles.userBtn}>
<Text style={styles.btnText}>Login</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.userBtn}>
<Text style={styles.btnText}>Text</Text>
</TouchableOpacity>
</View>
</View>
);
}
}

希望这对您有所帮助。如有疑问,请放心。

关于react-native - react native 错误: Super expression must either be null or a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60016659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com