Vue路由跳转的4种方式小结
router-view 实现路由内容的地方,引入组件时写到需要引入的地方,需要注意的是,使用vue-router控制路由则必须router-view作为容器。
通过路由跳转的种四方式
1、 标签路由 router-link
注意:router-link中,链接如果是’/'开头则表示从根路由开始;如果开头不带‘/’,则从当前路由开始。
(1)不带参数
<router-link :to="{name:'home'}"> <router-link :to="{path:'/home'}">
(2)带参数
<router-link :to="{name:'home', params: {id:1}}"> // params传参数 (类似post) // 路由配置 path: "/home/:id" 或者 path: "/home:id" // 不配置path ,第一次可请求,刷新页面id会消失(比如,点击某件商品图片的“查看详情”,跳转到该商品的详情页面,刚开始进入详情页面时能拿到数据(根据商品id获取),刷新页面后,id丢失,页面就取不到相应的数据了) // 配置path,刷新页面id会保留 // html 取参 $route.params.id // script 取参 this.$route.params.id <router-link :to="{name:'home', query: {id:1}}"> // query传参数 (类似get,url后面会显示参数) // 路由可不配置 // html 取参 $route.query.id
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:'1'}}) this.$router.push({path:'/home',query: {id:'1'}}) // query传参数 (类似get,页面url后面会显示参数) // 路由可不配置 // html 取参 $route.query.id // script 取参 this.$route.query.id
params传参
this.$router.push({name:'home',params: {id:'1'}}) // 只能用 name // params传参数 // 路由配置 path: "/home/:id" // 不配置path ,第一次可请求,刷新页面id会消失 // 配置path,刷新页面id会保留 // html 取参 $route.params.id // script 取参 this.$route.params.id
3、this.$router.replace()(与this.$router.push()类似)
4、this.$router.go(n)
this.$router.go(n) 向前或者向后跳转n个页面,n可为正整数或负整数
5、this.$router.push()、this.$router.replace()、this.$router.go(n)区别
1、this.$router.push
跳转到指定url路径,并在history栈中添加一个记录,点击后退会返回到上一个页面
2、this.$router.replace
跳转到指定url路径,但是history栈中不会有记录,点击返回会跳转到上上个页面 (就是直接替换了当前页面)
3、this.$router.go(n)
向前或者向后跳转n个页面,n可为正整数或负整数
到此这篇关于Vue路由跳转的4种方式小结的文章就介绍到这了,更多相关Vue路由跳转内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Vue.js 3.x 中的响应式数据ref 与 reactive详解
ref 和 reactive 是 Vue.js 3 中用于创建响应式数据的两个关键函数,它们分别适用于不同类型的数据,帮助我们更好地组织和管理组件的状态,这篇文章主要介绍了Vue.js 3.x 中的响应式数据:ref 与 reactive,需要的朋友可以参考下2024-01-01Vue官方推荐AJAX组件axios.js使用方法详解与API
axios是Vue官方推荐AJAX组件,下面为大家介绍axios.js库的详细使用方法与API介绍2018-10-10Vue装饰器中的vue-property-decorator 和 vux-class使用详解
这篇文章主要介绍了Vue装饰器中的vue-property-decorator 和 vux-class使用详解,通过示例代码给大家介绍的非常详细,对vue-property-decorator 和 vux-class的使用感兴趣的朋友一起看看吧2022-08-08
最新评论