路由的概念
通过改变URL,在不重新请求页面的情况下,更新页面视图
更新视图但不重新请求页面是前端路由原理的核心之一,它共有两种路由模式,默认为hash模式
如何设置路由模式
const router=new VueRouter({
mode:'history',
routes:[...]
})
两种路由模式下mode的区别
http://localhost:8080/#/login
http://localhost:8080/home
vue-router常用的两种跳转方式
1.编程式导航
<div @click="$router.push('路由地址')"></div>
2.组件式导航
<router-link to="路由地址"></router-link> //第二种
hash("#")的作用是加载 URL 中指示网页中的位置。# 号后面的 hash值,可通过 window.location.hash 获取
特点:
hash 不会被包括在 http 请求中,,对服务器端完全无用,因此,改变 hash 不会重新加载页面。
可以为 hash 的改变添加监听事件:window.addEventListener(“hashchange”,funcRef,false)
每一次改变 hash(window.localtion.hash),都会在浏览器访问历史中增加一个记录。
利用 hash 的以上特点,就可以来实现前端路由"更新视图但不重新请求页面"的功能了。
HashHistory 拥有两个方法,一个是 push, 一个是 replace
两个方法:HashHistory.push() 和 HashHistory.replace()
第一种:通过冒号的形式进行传播,刷新页面的时候数据不会丢失
getDescribe(id) {
//直接调用$router.push 实现携带参数的跳转
this.$router.push({
path: `/describe/${
id}`,
})
需要配置的对应路由,需要在path中添加/:id来对应 $router.push 中path携带的参数
{
path: '/describe/:id',
name: 'Describe',
component: Describe
}
在要接受的组件中通过params方法来获取
this.$route.params.id
第二种:通过params的方式,路径不会显示传递的参数
页面刷新数据会丢失
在第一个组件中,通过路由属性中的name来确定匹配的路由,通过params来传递参数
this.$router.push({
name: 'Describe',
params: {
id: id
}
})
对应路由配置: 这里可以添加:/id 也可以不添加,添加数据会在url后面显示,不添加数据就不会显示
// 这就是没添加的情况
path: '/describe',
name: 'Describe',
component: Describe
}
这种方法也是通过params来传递参数
this.$route.params.id
第三种:通过query的方式也就是 ?的方式路径会显示传递的参数
第一个组件:使用path来匹配路由,然后通过query来传递参数这种情况下 query传递的参数会显示在url后面?id=?
this.$router.push({
path: '/describe',
query: {
id: id
}
})
对应的路由配置
{
path: '/describe',
name: 'Describe',
component: Describe
}
通过query来获取参数
this.$route.query.id