如何使react-native-router组件保持活动状态?

时间:2018-02-01 17:18:00

标签: javascript reactjs react-native react-router

我正在使用react-router-native来浏览我的应用程序。我有一个聊天,当我切换到<Link />的其他组件时,我希望它保持挂载状态。我通过创建TextButton对此进行了测试,当我点击Button时,文本变为随机数;当我现在切换到另一个组件并返回时,数字消失了。有没有可以保持号码加载的解决方案?

我像这样设置路由器:

  <NativeRouter>
    <View>
      <Route exact path="/" component={Recipes} /> 
      <Route path="/recipes" component={Recipes} /> 
      <Route path="/bookmarks" component={Bookmarks} />
      <Route path="/chat" component={Chat} />
      <Route path="/community" component={Community} />
      <Route path="/settings" component={Settings} /> 
    </View>
  </NativeRouter>

0 个答案:

没有答案