zoukankan      html  css  js  c++  java
  • vue中跳转的方法

    1.router-link 跳转的方法

     <router-link :to='{path:"/CommentList",query:{id:this.$route.query.goodsid}}'> 
           <div class="right">
                <span>查看全部</span>
                <img src="../assets/image/flowerdetail_rightarrow.png" alt="">
            </div>
     </router-link>
    

    2.点击方法跳转

    this.$router.push({name: '/order/page1',params:{ id:'1'}});
    this.$router.push({path: ''/order/index''});
    this.$router.push({path: '/order/page1',query:{ id:'2'}});
       this.$router.push({ name: 'flowerpaysuccess', params: { orderId: '321'} })
     
      接收页面
     created(){
            this.id=this.$route.params.orderId;
            console.log(this.id)
        }
     

      

      

    3.有时候跳转时需要传递一个数组,数组中带有多个参数,简便方法如下
    如下的work数组中传递多个参数 id title img等等多个参数时

    <router-link tag="aa" :to="{path:'/目标路径',query:{arry:work}}">
    
    export default{
       data(){
           return{
               work:[ ],
           }
       }
    }
    
    
    在跳转到的页面中用 created()接收
    created(){
        this.work=this.$route.query.arry;
    }
    

      

  • 相关阅读:
    Input标签与图片按钮水平对齐解决方法
    下载网页流
    GTD
    Eclipse 运行多个Tomcat实例
    Tomcat启动超时
    Javascript:谈谈JS的全局变量跟局部变量
    影响一生的习惯
    OpenSUSE 安装并启动Tomcat
    ExtJS实战 01——HelloWorld
    eclipse快捷键
  • 原文地址:https://www.cnblogs.com/fei3/p/12048789.html
Copyright © 2011-2022 走看看