vue跳转页⾯的⼏种⽅法(推荐)
vue跳转不同页⾯的多种⽅法
1:router-link跳转
<!-- 直接跳转 -->
<router-link to='/testDemo'>
<button>点击跳转2</button>
</router-link>
<!-- 带参数跳转 -->
<router-link :to="{path:'testDemo',query:{setid:123456}}">
<button>点击跳转1</button>
</router-link>
<router-link :to="{name:'testDemo',params:{setid:1111222}}">
<button>点击跳转3</button>
</router-link>
2:this.$router.push()
<template>
<div id='test'>
<button @click='goTo()'>点击跳转4</button>
</div>
</template>
<script>
export default{
name:'test',
methods:{
goTo(){
//直接跳转
this.$router.push('/testDemo');
//带参数跳转
this.$router.push({path:'/testDemo',query:{setid:123456}});
this.$router.push({name:'testDemo',params:{setid:111222}});
}
}
}
</script>
params和query传参数有什么不⼀样??在地址栏中可以看到,params传参数时,地址栏中看不到参数的内容,有点像ajax中的post传参,query传参数时,地址栏中可以看到传过来的参数信息,有点像ajax的个体传参
如果单独传setId⼀个参数的时候,地址栏中的地址如下图:
react router 跳转
第⼀种⽅式:path - query 传参
第⼆种⽅式:name - params传参数
但是⼀般情况下,传参数是传递⼀个对象,当传递的是⼀个对象的时候,地址栏中的地址如下图:
第⼀种⽅式:path - query 传参
第⼆种⽅式:name - params传参数
3:a标签可以跳转么??可以跳转外部链接,不能路由跳转
接收⽅怎么接收参数??this.$route.query.serid和this.$route.params.setid,以下举⼀个接收的例⼦注意接收参数时是 $route 不是 $router
<template>
<div>
testDemo{{this.$route.query.setid}}
</div>
</template>
知识点补充:vue三种不同⽅式实现页⾯跳转
Vue:router-lin
<router-link to="/">[跳转到主页]</router-link>
<router-link to="/login">[登录]</router-link>
<router-link to="/logout">[登出]</router-link>
this.$router.push("/");
<button @click="goHome">[跳转到主页]</button>
export default {
name: "App",
methods: {
// 跳转页⾯⽅法
goHome() {
this.$router.push("/");
},
}
this.$(1);
<button @click="upPage">[上⼀页]</button>
<button @click="downPage">[下⼀页]</button>
upPage() {
// 后退⼀步记录,等同于 history.back()
this.$(-1);
},
downPage() {
// 在浏览器记录中前进⼀步,等同于 history.forward()
this.$(1);
}
代码⽰例:
<template>
<div id="app">
<img src="./assets/logo.png">
<router-view/>
<router-link to="/">[跳转到主页]</router-link>
<router-link to="/login">[登录]</router-link>
<router-link to="/logout">[登出]</router-link>
<!-- javascript跳转页⾯ -->
<button @click="goHome">[跳转到主页]</button>
<!-- 回到上⼀页 -->
<button @click="upPage">[上⼀页]</button>
<button @click="downPage">[下⼀页]</button>
<!-- 回到下⼀页 -->
</div>
</template>
<script>
export default {
name: "App",
methods: {
/
/ 跳转页⾯⽅法
goHome() {
this.$router.push("/");
},
upPage() {
// 后退⼀步记录,等同于 history.back()
this.$(-1);
},
downPage() {
// 在浏览器记录中前进⼀步,等同于 history.forward()
this.$(1);
}
}
};
</script>
总结
到此这篇关于vue不同⽅法跳转页⾯的⼏种⽅法的⽂章就介绍到这了,更多相关vue 跳转页⾯内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论