前端路由和后端路由
- 前端路由的核心:改变url但是页面不刷新
- 实现
- 通过hash模式:
location.hash='aaa'
- 通过h5的history模式:
history.pushState({},'','home') history.replaceState history.go(-1) history.back()
- 通过hash模式:
前端路由和后端路由
location.hash='aaa'
history.pushState({},'','home') history.replaceState history.go(-1) history.back()