react native navigator:Undefined 不是对象(正在评估 this.props.navigation.navigate)
我无法理解如何在 react-native 中实现导航。 根据 文档 ,我已安装插件并集成代码,但仍然出现错误
未定义不是对象(评估 this.props.navigation.navigate)
下面是 index.android.js
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
import Login from './src/pages/Login';
import Home from './src/pages/Home';
import { StackNavigator } from 'react-navigation';
export default class ECart extends Component {
render() {
return (
<App />
);
}
}
const App = StackNavigator({
Login:{screen:Login},
Home: {screen: Home}
});
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
AppRegistry.registerComponent('ECart', () => ECart);
登录页面
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
Image,
TextInput,
Alert,
Button,
TouchableOpacity
} from 'react-native';
import { StackNavigator } from 'react-navigation';
import Home from './Home';
export default class Login extends Component {
constructor(props) {
super(props);
this.state = {};
this.onButtonPress=this.onButtonPress.bind(this);
}
onButtonPress= () => {
alert("ok");
const { navigate } = this.props.navigation;
navigate(Home);
};
render() {
return (
<View style={styles.container}>
<View style={{justifyContent: 'center',alignItems: 'center',height:250}}>
<Image style={{}} source={require('../img/ic_launcher.png')} />
</View>
<View style={styles.wrapper}>
<View style={styles.inputWrap}>
<View style={styles.iconWrap}>
<Image style={styles.icon} source={require('../img/icon/ic_email.png')}/>
</View>
<TextInput
style={styles.input}
placeholder="Username"
underlineColorAndroid="transparent"
placeholderTextColor="#939598"
/>
</View>
<View style={styles.inputWrap}>
<View style={styles.iconWrap}>
<Image style={styles.icon} source={require('../img/icon/ic_lock.png')}/>
</View>
<TextInput
style={styles.input}
placeholder="Password"
secureTextEntry
underlineColorAndroid="transparent"
placeholderTextColor="#939598"
/>
</View>
<TouchableOpacity
activeOpacity={0.5}
onPress={this.onButtonPress}>
<View style={styles.button}>
<Text style={styles.buttonText}>Login</Text>
</View>
</TouchableOpacity>
<TouchableOpacity activeOpacity={0.5}>
<View style={styles.textWrap}>
<Text>Forgot Password.</Text><Text>Reset here</Text>
</View>
</TouchableOpacity>
</View>
<View style={styles.bottomTextWrap}>
<Text style={{}}> By clicking Sign In, you agree to our Terms and that you have read our Data Policy, including our Cookie Use.
</Text>
</View>
<View style={styles.bottomTextWrap}>
<Text> Copyright 2017 Suyati Technologies
</Text>
</View>
</View>
);
}
}
const styles= StyleSheet.create({
container:{
flex:1,
backgroundColor: '#FFFFFF'
},
inputWrap:{
flexDirection:"row",
marginVertical:10,
height:50,
borderWidth:1,
borderColor:'#939598',
backgroundColor:'transparent',
},
textWrap:{
flexDirection:"row",
backgroundColor:'transparent',
justifyContent:'center',
alignItems:'center',
marginVertical:10,
paddingHorizontal:20
},
bottomTextWrap:{
flex:1,
flexDirection:"row",
backgroundColor:'transparent',
justifyContent: 'center',
alignItems:'flex-end',
marginVertical:10
},
text:{
justifyContent:'center',
alignItems:'center'
},
input:{
flex:1,
paddingHorizontal:10,
backgroundColor:"transparent",
color:'#939598'
},
wrapper:{
paddingHorizontal:30
},
iconWrap :{
paddingHorizontal:7,
justifyContent:'center',
alignItems:'center',
borderColor:'#939598'
},
icon:{
width:20,
height:20
},
button:{
backgroundColor:'#13AFBC',
paddingVertical:10,
marginVertical:10,
justifyContent:'center',
alignItems:'center'
},
buttonText:{
color:'#FFFFFF',
fontSize:18
}
})
我正尝试导航到主屏幕。 我发现 react-native 有点难。 如果有人能给我指明正确的方向,那将会非常有帮助,因为我被困住了,需要一种新的方法。
编辑 - 我改变了代码,但它仍然无法导航。我收到了警报,但它仍然在登录页面上
谢谢!
看起来您已经从不同来源(可能是教程)复制粘贴了代码并希望它能够工作,但通常不会。您的代码中有几个错误。
首先,在
index.android.js
文件中,您有
ECart
组件,它传递给
AppRegistry.registerComponent()
函数。因此,此组件是您应用程序的起点。您还有
App
变量,它实际上也是一个组件,但您从未使用过它。所以现在,您的应用程序不使用 react-navigation,因为它无论如何都不包含在内。为了使用导航库,您必须在某种程度上将其传递给应用程序注册表。例如像这样
const App = StackNavigator({
Login: {screen: Login},
Home: {screen: Home},
});
export default class ECart extends Component {
render() {
return (
<App />
);
}
}
这样,
Ecart
被传递给 AppRegistry,并且它具有
App
(导航组件),它将处理导航。因为
App
负责导航,所以您应该声明“路由”和与导航组件对应的组件,就像我在上面包含的
Login Screen
一样。因为
Login
在您的
StackNavigator
声明中是第一个,所以它将是应用程序加载时的第一个屏幕。
现在,您通过
StackNavigator
传递的每个组件都将具有由 react-navigation 传递的
navigation
属性。使用该属性,您可以导航到应用中的其他屏幕。因此,由于您的代码中的
Login
组件未传递给
StackNavigator
,
this.props.navigation
将为
undefined
。当您尝试访问
this.props.navigation.navigate
时,它会抛出一个错误,其中指出未定义不是对象。这解释了您的主要错误,但这不仅是您在此处粘贴的代码中的错误。
在您的
Login
组件中,您有
onButtonPress= () => {
navigate(Home, { name: 'Jane' });
};
它调用
navigate
函数,但它没有声明。因此,当您解决第一个错误时,按下按钮时您会看到另一个错误,
Undefined 不是函数
。因此,要解决这个问题,您必须做两件事。首先,声明导航函数,然后绑定 onButtonPress 方法。
onButtonPress() {
const { navigate } = this.props.navigation;
navigate('Home', { name: 'Jane' });
};
并像
constructor(props) {
super(props);
this.state = {};
this.onButtonPress=this.onButtonPress.bind(this);
}
一样绑定此方法。如果您正在思考,绑定到底是什么,请看一下这个 视频