Vue学习笔记 页面跳转

Posted by fsoooo Blog on January 23, 2022

在最近的项目开发中,需要使用到Vue的页面跳转,就记录一下常用的几种:

原生JS

var url = 'https://10.50.1.10:8888/'
window.open(url)//打开新页面
window.location.href = url//跳转页面

template

  <router-link to="/recommend">
      <button class="button">点击跳转</button>
 </router-link>

###$router.push 有时候我们需要的是点击按钮跳出弹窗,选择判断后进行跳转,我们常用.$router.push 跳转 传参:

<button @click = "func()">跳转</button>

<script>
    export default{
        methods:{
            func (){
                this.$router.push({name: '/order/page1',params:{ id:'1'}});
            }
        }
    }
</script>

另有:

this.$router.push({path: ''/order/index''});
this.$router.push({path: '/order/page1',query:{ id:'2'}});
this.$router.push({name: '/order/page2',params:{ id:'6'}});

//  path:'路由里配置的index.vue的路径'
//  params:{id:'1',name:'eva'} /query:{id:'5'}  需要传递的参数和值


###路由传参params 和query两种方式的区别:

用法上的

刚才已经说了,query要用path来引入params要用name来引入,接收参数都是类似的,分别是this.route.query.namethis.route.params.name

注意接收参数的时候,已经是route而不是router了哦!!

展示上的

query更加类似于我们ajax中get传参,params则类似于post,说的再简单一点,前者在浏览器地址栏中显示参数,后者则不显示。

三、路由参数的取值:


//注意:接收参数的时候已经是 route 而不是router了