如何使用React-Router在每次导航后防止ReactJS应用刷新

时间:2019-01-02 14:49:24

标签: reactjs firebase react-router

该应用程序具有公告功能,该功能基本上可以显示其他用户正在上传的图像。首次加载时,图像加载良好,但是当用户在应用程序中导航(使用react-router和switch)时,公告功能仅在Firebase数据库当前存储了多于1张图像时显示1张图像

    class App extends Component {

  render() {
    return (
        <Router>
            <div>
                <div className="App">
                    <div>

                        <div className="content">
                            <Switch>
                                <Route exact path="/" component={Dash} />
                                <Route path="/sumbong" component={Sumbong} />
                                <Route path="/docproc" component={DocProcessing}/>
                                <Route path="/announce" component={Announce}/>
                            </Switch>
                        </div>
                    </div>


                    <div className="navi">
                        <SideNavigation  />
                    </div>
                 </div>
            </div>
        </Router>
    );
  }
}

export default App;

0 个答案:

没有答案