我无法在其他页面上导航。 我有默认的班级代码 在此类中,导航工作正常
export default class ClassName1 extends React.Component {
constructor(props) {
super(props);
}
}
但是当我在下面的类中调用this.props.navigation
时会引发错误
class ClassName2 extends React.Component {
constructor(props) {
super(props);
}
}
像这样,我正在ClassName2
中调用函数
<TouchableOpacity onPress={() => this.props.navigation.navigate("Report") }>
<Text style={style.modalContainerText}>
inappropriate Content
</Text>
</TouchableOpacity>
两个类都在一个文件中。
答案 0 :(得分:0)
您的问题尚不完全清楚,但我想您正在ClassName2
内使用ClassName1
这样(还有更多的组件和课程的构造函数):
class ClassName1 extends React.Component {
render() {
return <ClassName2 />
}
}
现在我想您正在使用ClassName1
作为带有反应导航的路线。 ClassName1
组件通过反应导航自动获取this.props.navigation
道具。要将其传递到ClassName2
元素,以便它也可以调用导航,就像这样:
class ClassName1 extends React.Component {
render() {
return <ClassName2 navigation={this.props.navigation} />
}
}
尽管这是基于猜测,所以请告诉我这是否可以解决您的问题。如果是这样,我将更新您的问题,以提供可以更好地描述您的问题的信息:)
答案 1 :(得分:0)
如果您的班级包含在StackNavigator
函数中,则可以访问this.props.navigation
,如果不需要,您可以使用像波纹管这样的withNavigation
函数
使用StackNavigator
import React, { Component } from 'react';
import { Button } from 'react-native';
import { StackNavigator } from 'react-navigation';
export class ClassName2 extends Component {
render() {
return <Button title="This will work" onPress={() => { this.props.navigation.navigate('someScreen') }} />;
}
}
export const myStackNavigator = StackNavigator({
myScreen: ClassName2
})
使用withNavigation
import React, { Component } from 'react';
import { Button } from 'react-native';
import { withNavigation } from 'react-navigation';
class ClassName2 extends Component {
render() {
return <Button title="This will work" onPress={() => { this.props.navigation.navigate('someScreen') }} />;
}
}
export default withNavigation(ClassName2);