admin管理员组文章数量:1343359
I am writing a small app with a navigation bar and 5 routes using react-router-dom 4.1.1
. When I click on a link in the navigation bar, the URL in the Firefox address bar updates, but the page displayed does not change. However, if I enter the address of a subpage in the address bar, the correct page is displayed.
app.js:
render(
<Provider store={store}>
<HashRouter>
<MainContainer />
</HashRouter>
</Provider>,
document.querySelector('.app')
);
Main.js:
render() {
return (
<div className="main">
<Message message= {this.props.message} />
<NavigationBar />
<Switch>
<Route exact path="/" ponent={HomePage}></Route>
<Route path="/classify" ponent={ClassifyPage}></Route>
<Route path="/admin" ponent={AdminPage}></Route>
<Route path="/users" ponent={UsersPage}></Route>
<Route path="/help" ponent={HelpPage}></Route>
</Switch>
</div>
);
}
I am writing a small app with a navigation bar and 5 routes using react-router-dom 4.1.1
. When I click on a link in the navigation bar, the URL in the Firefox address bar updates, but the page displayed does not change. However, if I enter the address of a subpage in the address bar, the correct page is displayed.
app.js:
render(
<Provider store={store}>
<HashRouter>
<MainContainer />
</HashRouter>
</Provider>,
document.querySelector('.app')
);
Main.js:
render() {
return (
<div className="main">
<Message message= {this.props.message} />
<NavigationBar />
<Switch>
<Route exact path="/" ponent={HomePage}></Route>
<Route path="/classify" ponent={ClassifyPage}></Route>
<Route path="/admin" ponent={AdminPage}></Route>
<Route path="/users" ponent={UsersPage}></Route>
<Route path="/help" ponent={HelpPage}></Route>
</Switch>
</div>
);
}
Share
edited Jun 29, 2017 at 11:27
Mayank Shukla
105k19 gold badges162 silver badges145 bronze badges
asked Jun 29, 2017 at 11:14
ErikWiErikWi
5065 silver badges11 bronze badges
1
- can you share your navbar ? – laltin Commented Jun 29, 2017 at 11:17
3 Answers
Reset to default 8It seems some ponents, like react-redux containers using connect(), block updates. The problem was solved using withRouter():
const MainContainer = withRouter(connect(
mapStateToProps,
mapDispatchToProps
)(Main));
Documentation: https://github./ReactTraining/react-router/blob/master/packages/react-router/docs/api/withRouter.md
I have the same error, but when I use withRouter, nothing changes. In my case, the reason of error is putting the <Link>
elements into the <Router>
tag.
<Router>
<Link to="something"></Link>
</Router>
Beware of that error, is very hard to diagnose! To fix this, just remove unneccesary <Router>
wrapper
Erik Winge almost the right. As I understand ponent where you enter you need to wrap your Component with withRouter.
So, to fix this you need to add:
...
Main = withRouter(Main);
...
export default Main;
...
本文标签: javascriptreactrouter 4 doesn39t update UI when clicking ltLinkgtStack Overflow
版权声明:本文标题:javascript - react-router 4 doesn't update UI when clicking <Link> - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743689996a2522548.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论