gpt4 book ai didi

reactjs - React-native: super 表达式必须为 null 或函数,而不是未定义

转载 作者:行者123 更新时间:2023-12-03 13:08:55 24 4
gpt4 key购买 nike

我见过类似的问题,但我似乎无法确定问题所在。我正在使用 React Native v 0.27我已将所有 require 方法更改为导入。

这是我收到的错误:

enter image description here

我不知道它是否相关,但错误的第一个位置指向我的 LoginComp.js 文件,其中包含以下代码:

/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
View,
Image,
TextInput,
Button,
TouchableHighlight
} from 'react-native';

class LoginComp extends Component {
constructor(){
super(props);
}
render() {
return (
<View style={{flex: 1}}>
<View style={this.props.styles.loginLogoContainer}>
<Image style={this.props.styles.view1logo} source={require('../imgs/Logo.png')} />
</View>
<View style={this.props.styles.loginContainer}>
<Text>Użytkownik:</Text>
<TextInput
style={this.props.styles.defaultInput}
placeholder="Użytkownik"
stretch={true}
autoComplete={false}
autoCorrect={false}
/>
<Text>Hasło:</Text>
<TextInput
style={this.props.styles.defaultInput}
placeholder="Hasło"
stretch={true}
autoComplete={false}
autoCorrect={false}
secureTextEntry={true}
/>
<TouchableHighlight onPress={this.props.LoginPress}>
<Text style={this.props.styles.loginButton}>Login</Text>
</TouchableHighlight>
</View>
<View style={this.props.styles.registrationWrapper}>
<Text>- lub -</Text>
<TouchableHighlight onPress={this.props.t_Registration}>
<Text style={this.props.styles.registration}>Załóż nowe konto</Text>
</TouchableHighlight>
</View>
</View>
);
}
}

module.exports = LoginComp;

最佳答案

更改您的导入语句,如下所示并尝试。

import React, { Component } from 'react';

import {
AppRegistry,
StyleSheet,
Text,
View,
Image,
TextInput,
Button,
TouchableHighlight,
} from 'react-native';

构造函数也应如下所示

constructor(props){
super(props);
}

关于reactjs - React-native: super 表达式必须为 null 或函数,而不是未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37676522/

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