反应路由器:在不改变路径的情况下向历史添加条目

时间:2015-02-15 16:32:53

标签: reactjs react-router

使用React Router,将新条目推送到历史记录以便更新URL的最佳方法是什么,但没有触发新路由?

Navigation.replaceWith() mixin方法似乎与我需要的方法相反。

1 个答案:

答案 0 :(得分:1)

不熟悉React-Router的API,但你可以使用纯javascript来做到这一点。

window.history.pushState({}, '', 'https://stackoverflow.com/new-url-here');

更多答案:Modify the URL without reloading the page