VueRouter编程式导航
router.push
基本使用
在之前的小节中,我们的路由跳转是通过标签
示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="app">
<div>
//定义了两个按钮,并给他们点击事件 jump
<button @click="jump('index')">首页</button>
<button @click="jump('article')">文章</button>
</div>
//使用 <router-view></router-view> 组件来渲染匹配组件
<router-view></router-view>
</div>
</body>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script type="text/javascript">
//定义了组件 Index
const Index = Vue.component('index', {
template: '<div>Hello,欢迎使用慕课网学习 Vue 教程!</div>',
})
//定义了组件 Article
const Article = Vue.component('myArticle', {
template: `<ul><li>1. Vue 计算属性的学习</li><li>2. Vue 侦听器的学习</li></ul>`,
})
//定义了路由数组
const routes = [
{ path: '/index', component: Index },
{ path: '/article', component: Article }
]
//创建 router 实例,然后传 routes 配置。
const router = new VueRouter({
routes: routes
})
var vm = new Vue({
el: '#app',
router,
data() {
return {}
},
methods: {
//们定义来 jump 函数,通过 router.push 实现路由跳转
jump(name) {
this.$router.push(name)
}
}
})
</script>
</html>
对象格式的参数
我们通过 router.push 的方法实现了路由跳转,该方法接收跳转路径作为参数。实际上,router.push 也可以接收一个描述地址的对象作为参数。例如:
// 字符串形式的参数
router.push('home')
// 通过路径描述地址
router.push({ path: 'home' })
// 通过命名的路由描述地址
router.push({ name: 'user' }})
当以对象形式传递参数的时候,还可以有一些其他属性,例如查询参数 params、query。
router.replace
跟 router.push 很像,唯一的不同就是,它不会向 history 添加新记录,而是跟它的方法名一样 —— 替换掉当前的 history 记录。我们将上一个例子中的 jump 函数稍加修改:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="app">
<div>
<button @click="jump('index')">首页</button>
<button @click="jump('article')">文章</button>
</div>
<router-view></router-view>
</div>
</body>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script type="text/javascript">
const Index = Vue.component('index', {
template: '<div>Hello,欢迎使用慕课网学习 Vue 教程!</div>',
})
const Article = Vue.component('myArticle', {
template: `<ul><li>1. Vue 计算属性的学习</li><li>2. Vue 侦听器的学习</li></ul>`,
})
const routes = [
{ path: '/index', component: Index },
{ path: '/article', component: Article }
]
const router = new VueRouter({
routes: routes
})
var vm = new Vue({
el: '#app',
router,
data() {
return {}
},
methods: {
jump(name) {
this.$router.replace(name)
}
}
})
</script>
</html>
router.go
这个方法的参数是一个整数,意思是在 history 记录中向前或者后退多少步。例如:
// 在浏览器记录中前进一步
router.go(1)
// 后退一步记录
router.go(-1)
// 前进 3 步记录
router.go(3)
// 如果 history 记录不够用,路由将不会进行跳转
router.go(-100)
router.go(100)
接下来我们仍然对第一个案例稍加修改:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="app">
<div>
<router-link to="index">首页</router-link>
<router-link to="article">文章</router-link>
</div>
<button @click="go(1)">前进一步</button>
<button @click="go(-1)">后路一步</button>
<button @click="go(3)">前进三步</button>
<button @click="go(-3)">后路三步</button>
<router-view></router-view>
</div>
</body>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script type="text/javascript">
const Index = Vue.component('index', {
template: '<div>Hello,欢迎使用慕课网学习 Vue 教程!</div>',
})
const Article = Vue.component('myArticle', {
template: `<ul><li>1. Vue 计算属性的学习</li><li>2. Vue 侦听器的学习</li></ul>`,
})
const routes = [
{ path: '/index', component: Index },
{ path: '/article', component: Article }
]
const router = new VueRouter({
routes: routes
})
var vm = new Vue({
el: '#app',
router,
data() {
return {}
},
methods: {
go(n) {
this.$router.go(n)
}
}
})
</script>
</html>