标签: reactjs react-router
使用React Router,将新条目推送到历史记录以便更新URL的最佳方法是什么,但没有触发新路由?
Navigation.replaceWith() mixin方法似乎与我需要的方法相反。
Navigation.replaceWith()
答案 0 :(得分:1)
不熟悉React-Router的API,但你可以使用纯javascript来做到这一点。
window.history.pushState({}, '', 'https://stackoverflow.com/new-url-here');
更多答案:Modify the URL without reloading the page