vue页面跳转

1、router-link跳转

1.不带参数
<router-link :to="{name:'home'}"> 
<router-link :to="{path:'/home'}">

 
2.带params参数
<router-link :to="{name:'home', params: {id:123456}}"> 

 
3.带query参数
<router-link :to="{name:'home', query: {id:123456}}"> 

2、this.$router.push()

1. 不带参数
this.$router.push('/home')
this.$router.push({name:'home'})
this.$router.push({path:'/home'})
 
2. query传参 
this.$router.push({name:'home',query: {id:'123456'}})
this.$router.push({path:'/home',query: {id:'123456'}})

 
3. params传参
this.$router.push({name:'home',params: {id:'123456'}})

跳转到指定url路径,并向history栈中添加一个记录,点击后退会返回到上一个页面。

query和params区别

query类似get, 跳转之后页面url后面会拼接参数,类似?id=123456, 非重要性的可以这样传, 密码之类还是用params刷新页面id还在

params类似post, 跳转之后页面url后面不会拼接参数, 但是刷新页面id会消失。

3、this.$router.replace()

用法同上,和第2个的this.$router.push方法一样。

跳转到指定url路径,但是history栈中不会有记录,点击返回会跳转到上个页面 (直接替换当前页面)。

4、this.$router.go(n)

<button @click="upPage">上页</button>
<button @click="downPage">下页</button>


// 上页
upPage() {
    this.$router.go(-1);  // 后退一步记录,等同于 history.back()
},

// 下页
downPage() {
    this.$router.go(1);   // 在浏览器记录中前进一步,等同于 history.forward()
}

向前或者向后跳转n个页面,n可为正整数或负整数。

相关推荐
new出一个对象3 小时前
uniapp接入BMapGL百度地图
javascript·百度·uni-app
你挚爱的强哥4 小时前
✅✅✅【Vue.js】sd.js基于jQuery Ajax最新原生完整版for凯哥API版本
javascript·vue.js·jquery
前端Hardy4 小时前
纯HTML&CSS实现3D旋转地球
前端·javascript·css·3d·html
susu10830189114 小时前
vue3中父div设置display flex,2个子div重叠
前端·javascript·vue.js
天天进步20157 小时前
Vue+Springboot用Websocket实现协同编辑
vue.js·spring boot·websocket
疯狂的沙粒7 小时前
如何在Vue项目中应用TypeScript?应该注意那些点?
前端·vue.js·typescript
小镇程序员7 小时前
vue2 src_Todolist全局总线事件版本
前端·javascript·vue.js
疯狂的沙粒8 小时前
对 TypeScript 中函数如何更好的理解及使用?与 JavaScript 函数有哪些区别?
前端·javascript·typescript
瑞雨溪8 小时前
AJAX的基本使用
前端·javascript·ajax
力透键背8 小时前
display: none和visibility: hidden的区别
开发语言·前端·javascript