开发者问题收集

如何在 React Native Ignite Bowser 中导航到另一个页面?

2020-03-27
929

我是 React Native / ignite Bowser 的新手。我正在制作一个 React Native / ignite Bowser 项目。

在我的应用程序中,首先有一个欢迎屏幕,该屏幕在应用程序启动时出现。欢迎屏幕上有一个“继续”按钮。当我单击“继续”按钮时,它应该转到登录屏幕。但它显示此错误:

TypeError: undefined is not an object (evaluating 'navigation.navigate')

我正在实际的 Android 物理设备上运行该应用程序。

有人能帮帮我吗?这是我在 github 上的代码:

https://github.com/boidurja/smartcope_new.git

这是发生错误的代码部分:

<Button title="Countinue" containerStyle={{ flex: 1 }} onPress={ ( ) => navigation.navigate('login') }/>

在此文件中:

app/screens/auth-screens/welcome-screen.tsx

我被告知,在这种情况下,问题是 props 属性没有导航对象,因为在新版本的库中,我们必须使用 react hooks 来检查 react-navigation v5 文档,了解如何访问 react 组件中的导航 prop。我试过了,但没有成功。

我看到这个错误 在此处输入图片描述

2个回答

您似乎没有正确接收导航对象。如果这是您使用的 component ,请使用 useNavigation 函数。

useNavigation is a hook which gives access to navigation object. It's useful when you cannot pass the navigation prop into the component directly, or don't want to pass it in case of a deeply nested child.

import { useNavigation } from '@react-navigation/native';

export const AuthScreensWelcomeScreen: FunctionComponent<AuthScreensWelcomeScreenProps> = observer((props) => {
...
 const navigation = useNavigation();

...
<Button title="Countinue" containerStyle={{ flex: 1 }} onPress={ ( ) => navigation.navigate('login') }/>

You can get access to the root navigation object through a ref and pass it to the RootNavigation which we will later use to navigate .

用法

import { NavigationContainer } from '@react-navigation/native';
import { navigationRef } from './RootNavigation';

export default function App() {
  return (
    <NavigationContainer ref={navigationRef}>{/* ... */}</NavigationContainer>
  );
}
// RootNavigation.js

import * as React from 'react';

export const navigationRef = React.createRef();

export function navigate(name, params) {
  navigationRef.current?.navigate(name, params);
}

// add other navigation functions that you need and export them
// any js module
import * as RootNavigation from './path/to/RootNavigation.js';


export const AuthScreensWelcomeScreen: FunctionComponent<AuthScreensWelcomeScreenProps> = observer((props) => {
// ...

<Button title="Countinue" containerStyle={{ flex: 1 }} onPress={ ( ) => RootNavigation.navigate('login') }/>
hong developer
2020-03-30

在 welcomscreen.tsx 中,尝试将此行:

const {
        navigation
    } = props;

更改为:

const {
        navigation
    } = this.props;

或者,您可以省略该代码片段并像这样更改按钮代码片段:

<Button title="Countinue" containerStyle={{ flex: 1 }} onPress={() => this.props.navigation.navigate('login') }

希望有所帮助。

AtomicPixel
2020-03-30