相关疑难解决方法(0)

React router 4不会更新链接上的视图,但会在刷新时更新

我使用以下简单的导航代码

<Router>
  <Switch>
    <Route exact path='/dashboard' component={Dashboard} />
    <Route path='/dashboard/accounts' component={AccountPage} />
  </Switch>
</Router>

<NavLink exact to={'/dashboard'}
         disabled={this.props.item.disabled}
         activeClassName='active'>

<NavLink exact to={'/dashboard/accounts'}
         disabled={this.props.item.disabled}
         activeClassName='active'>
Run Code Online (Sandbox Code Playgroud)

URL更改但视图不更改.但是,当我刷新页面或手动转到该URL时,它会发生变化.

url reactjs react-router react-router-v4

42
推荐指数
3
解决办法
2万
查看次数

标签 统计

react-router ×1

react-router-v4 ×1

reactjs ×1

url ×1