目录
面试题:vue 路由模式
路由模式有两种:
history 、 hash
区别:
1.表现形态不同
hash 模式带井号: http://123.57.109.30:4005/dist/#/layout/home
history模式:http://123.57.109.30:4005/dist/layout/home
2.跳转请求
history: http://123.57.109.30:4005/id ===>发送请求
hash 模式不会发送请求
微信扫一扫
目录
history 、 hash
hash 模式带井号: http://123.57.109.30:4005/dist/#/layout/home
history模式:http://123.57.109.30:4005/dist/layout/home
history: http://123.57.109.30:4005/id ===>发送请求
hash 模式不会发送请求
相关推荐