【发布时间】:2019-02-21 17:03:15
【问题描述】:
我正在我的 react-native 应用程序的屏幕之间创建导航,但是我有一个问题,我有一个父视图,并且每当我尝试将导航作为子视图的道具传递时,它都会在其中呈现一个子视图给我一个错误,谁能告诉我我应该如何通过它?这是我尝试做的:
App.js:
import React, { Component } from 'react';
import Parent from './components/Parent';
import {
createStackNavigator,
} from 'react-navigation';
const App = createStackNavigator({
Parent: { screen: Parent },
});
父组件:
import React, { Component } from 'react';
import { Text } from 'react-native';
import Child from './Child';
class Parent extends Component {
render() {
return (
<Text>Parent Component</Text>
<Child />
);
export default Parent;
子组件:
import React, { Component } from 'react';
import { TouchableOpacity } from 'react-native';
class Child extends Component {
render() {
const { navigate } = this.props.navigation;
return(
<TouchableOpacity onPress={() => {props.navigation.navigate('Parent')}}>
);
export default Child;
这是错误:
undefined 不是评估 _this.props.navigation 的对象
【问题讨论】:
-
能否也添加父子组件相关代码?例如,你是如何传递道具的。
-
@PritishVaidya 已更新
标签: react-native react-navigation