javascript-React Navigation:检测应用程序导航到哪个屏幕

前端之家收集整理的这篇文章主要介绍了javascript-React Navigation:检测应用程序导航到哪个屏幕 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有2个组成部分:

>仪表板-应用程序的入口点
>帖子

在控制台中,在componentDidMount中有一个API调用.
在“帖子”组件中,收到帖子后,我导航至“仪表板”.是否可以检测应用是否已从“帖子”导航到“仪表板”并删除co​​mponentDidMount中的API调用.

检查以下代码

// Dashboard.js

 componentDidMount() {
   this.handleApiCall(); // default axios get request
// Here I need to detect if the user was navigated to Dashboard from Posts or other component
}


// Posts.js
  handleNavigation = () => {
    this.setState({
      isOpen: false,});
      this.props.navigation.navigate('Dashboard');
 };

谢谢!

最佳答案
尝试从Posts.js传递参数

// Dashboard.js
componentDidMount() {

   const { navigation } = this.props;
   const fromPosts = navigation.getParam('fromPosts',false);
   if(!fromPosts) {
     this.handleApiCall(); // default axios get request
   }

}


// Posts.js
handleNavigation = () => {
    this.setState({
      isOpen: false,});

    this.props.navigation.navigate('Dashboard',{fromPosts: true});
 };
原文链接:https://www.f2er.com/js/531250.html

猜你在找的JavaScript相关文章