本文介绍了react router中的hashHistory和browserHistory有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在谷歌上搜索了很多,但我没有找到以下问题的明确答案:react-router 中的 hashHistory 和 browserHistory 有什么区别?

I have googled quite some bit, but I didn't find a clear answer to the following question: What is the difference between hashHistory and browserHistory in react-router?

推荐答案

基本的区别在于 hashHistory 使用的 URL 是:http://myurl.com/#page/another_page/another_page

The basic difference is that the hashHistory uses URLs like: http://myurl.com/#page/another_page/another_page

使用 BrowserHistory,您将获得正常的 url(无哈希):http://myurl.com/page/another_page/another_page

With BrowserHistory you get normal urls (no hash): http://myurl.com/page/another_page/another_page

这篇关于react router中的hashHistory和browserHistory有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 17:38