undefined 不是 onPress 的对象(正在评估 this.props.navigation.navigate)

undefined is not an object (evaluating this.props.navigation.navigate) for onPress

我是 React Native 新手,遇到这个错误:

undefined is not an object (evaluating this.props.navigation.navigate)

这是一个非常常见的错误,但原因可能不同,因为我无法通过查看类似问题的其他答案来修复它。

我的屏幕上有此代码:

function MyClientsScreen(props) {

    return (
        <Stack.Navigator>
            <Stack.Screen name='Clients' component={ClientSrc} options={{
                title: 'My Clients',
                headerRight: () => (
                    <TouchableOpacity onPress={() => props.navigation.navigate('AddClients')}>
                        <Image source={require('../assets/addClient.png')} style={styles.addBtnImg} />
                    </TouchableOpacity>
                ),
            }} />
            <Stack.Screen name='AddClients' component={AddClientSrc} options={{
                title: 'Add New Client',
                headerRight: () => (
                    <TouchableOpacity>
                        <Text style={styles.headerButtton}>Save</Text>
                    </TouchableOpacity>
                )
            }} />
        </Stack.Navigator>
    );
}

当前屏幕上的 headerRight 按钮在按下时应导航到 AddClients(在堆栈导航内)。

navigation 没有在任何地方定义,当我将按钮代码放在我制作的 const ClientSrc = ({ navigation }) => {... 函数中时,我能够做到这一点,但是当我将按钮作为 headerRight 按钮,onPress 开始抛出错误。

为了获得导航道具,该组件应该是导航的一部分。

您可以像下面这样以不同的方式处理此问题

<Stack.Screen name='Clients' component={ClientSrc} options={({ navigation }) => ({
                title: 'My Clients',
                headerRight: () => (
                    <TouchableOpacity onPress={() => navigation.navigate('AddClients')}>
                        <Image source={require('../assets/addClient.png')} style={styles.addBtnImg} />
                    </TouchableOpacity>
                ),
            })} />

选项将导航传递给给定的函数,您可以使用它并访问导航。