路由模式(hash H5 history)
- hash模式(默认) 例如:http://xxx.xxx.xxx/#home
window.onhashchange
window.onhashchang = (event) => {
//event.oldUrl
//event.oldUrl
//location.hash
}
- history模式(默认) 例如:http://xxx.xxx.xxx/home
history.pushSate
window.onpopState
后者需要server端支持,因此无特情况使用hash模式