React-router中,一个页面下的路由切换问题

#1
<Switch>
    <Route path='/result/earning' component={Earning}/>
    <Route path='/result/deal' component={Deal}/>
</Switch>

这两个组件切换,每次切换,两个组件都要重新加载数据,有什么方法可以不重新加载数据么?

#2

使用redux试试?