博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue-router 2.0 跳转之router.push()
阅读量:6793 次
发布时间:2019-06-26

本文共 3159 字,大约阅读时间需要 10 分钟。

router.push(location) 

除了使用 创建 a 标签来定义导航链接,我们还可以借助 router 的实例方法,通过编写代码来实现。 

router.push(location) 

想要导航到不同的 URL,则使用 router.push 方法。这个方法会向 history 栈添加一个新的记录,所以,当用户点击浏览器后退按钮时,则回到之前的 URL。

 

当你点击 <router-link> 时,这个方法会在内部调用,所以说,点击 等同于调用 router.push(…)。

 

声明式:<router-link :to="..."> 

编程式:router.push(...) 

该方法的参数可以是一个字符串路径,或者一个描述地址的对象。

// 字符串router.push('home')// 对象this.$router.push({path: '/login?url=' + this.$route.path});// 命名的路由router.push({ name: 'user', params: { userId: 123 }})// 带查询参数,变成/backend/order?selected=2this.$router.push({path: '/backend/order', query: {selected: "2"}});// 设置查询参数this.$http.post('v1/user/select-stage', {stage: stage})      .then(({data: {code, content}}) => {            if (code === 0) {                // 对象                this.$router.push({path: '/home'});            }else if(code === 10){                // 带查询参数,变成/login?stage=stage                this.$router.push({path: '/login', query:{stage: stage}});           }});// 设计查询参数对象let queryData = {};if (this.$route.query.stage) {    queryData.stage = this.$route.query.stage;}if (this.$route.query.url) {    queryData.url = this.$route.query.url;}this.$router.push({path: '/my/profile', query: queryData});

 

eplace 

类型: boolean 

默认值: false 

设置 replace 属性的话,当点击时,会调用 router.replace() 而不是 router.push(),于是导航后不会留下 history 记录。即使点击返回按钮也不会回到这个页面。 

//加上replace: true后,它不会向 history 添加新记录,而是跟它的方法名一样 —— 替换掉当前的 history 记录。

 

this.$router.push({path: '/home', replace: true})//如果是声明式就是像下面这样写:
// 编程式:router.replace(...)

 

router.push(location) 除了使用 创建 a 标签来定义导航链接,我们还可以借助 router 的实例方法,通过编写代码来实现。 router.push(location) 想要导航到不同的 URL,则使用 router.push 方法。这个方法会向 history 栈添加一个新的记录,所以,当用户点击浏览器后退按钮时,则回到之前的 URL。

当你点击 <router-link> 时,这个方法会在内部调用,所以说,点击 等同于调用 router.push(…)。
声明式:<router-link :to="..."> 编程式:router.push(...) 该方法的参数可以是一个字符串路径,或者一个描述地址的对象。
// 字符串router.push('home')
// 对象this.$router.push({path: '/login?url=' + this.$route.path});
// 命名的路由router.push({ name: 'user', params: { userId: 123 }})
// 带查询参数,变成/backend/order?selected=2this.$router.push({path: '/backend/order', query: {selected: "2"}});
// 设置查询参数this.$http.post('v1/user/select-stage', {stage: stage})      .then(({data: {code, content}}) => {            if (code === 0) {                // 对象                this.$router.push({path: '/home'});            }else if(code === 10){                // 带查询参数,变成/login?stage=stage                this.$router.push({path: '/login', query:{stage: stage}});           }});
// 设计查询参数对象let queryData = {};if (this.$route.query.stage) {    queryData.stage = this.$route.query.stage;}if (this.$route.query.url) {    queryData.url = this.$route.query.url;}this.$router.push({path: '/my/profile', query: queryData});123456789101112131415161718192021222324252627282930313233replace 类型: boolean 默认值: false 设置 replace 属性的话,当点击时,会调用 router.replace() 而不是 router.push(),于是导航后不会留下 history 记录。即使点击返回按钮也不会回到这个页面。 //加上replace: true后,它不会向 history 添加新记录,而是跟它的方法名一样 —— 替换掉当前的 history 记录。
this.$router.push({path: '/home', replace: true})//如果是声明式就是像下面这样写:<router-link :to="..." replace></router-link>// 编程式:router.replace(...)--------------------- 作者:愤怒的小青春 来源:CSDN 原文:https://blog.csdn.net/qq_30114149/article/details/78416457 版权声明:本文为博主原创文章,转载请附上博文链接!

转载于:https://www.cnblogs.com/nongzihong/p/10281584.html

你可能感兴趣的文章
underscore源码解析1
查看>>
html5从0到1-html5的简易数据库开发(18)
查看>>
spring cloud gateway 全局过滤器
查看>>
RAP Mock 工具模拟数据
查看>>
Confluence 6 确定一个生产系统备份方案
查看>>
在Chrome浏览器中保存的密码有多安全?
查看>>
撩人情话(三)
查看>>
JetBrains Product Pack for Students
查看>>
内存顺序(Memory Order)
查看>>
shiro实战系列(一)之入门实战
查看>>
BGP-RR 路由反射器工作原理
查看>>
算法作业:求一个集合中所有子集元素之和
查看>>
Linux内核驱动之延时 【转】
查看>>
Portal的简单使用
查看>>
springmvc4环境简单搭建和定时任务
查看>>
分布式锁的实现方式——ACID数据库、缓存或者是zk
查看>>
机器人在水下的精彩生活:探索更神秘的海洋世界
查看>>
和我一起学CSLA.NET----创建业务对象3
查看>>
Autodesk云计算-- HomeStyler在线家居设计平台
查看>>
linux rtc 接口【转】
查看>>