温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

this.$router.push携带参数跳转页面怎么实现

发布时间:2023-04-03 16:30:09 来源:亿速云 阅读:195 作者:iii 栏目:开发技术

这篇“this.$router.push携带参数跳转页面怎么实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“this.$router.push携带参数跳转页面怎么实现”文章吧。

    前言

    this.$router.push进行页面跳转时。携带参数有params和query两种方式。

    一、params和query使用方式

    query方式:
    this. r o u t e r . p u s h ( p a t h : ′ t e s t Q u e r y ′ , q u e r y : t e s t Q u e r y : ′ t e s t Q u e r y ′ ) , 传 递 的 参 数 会 拼 接 在 跳 转 地 址 的 后 面 。 使 用 t h i s . router.push({path: 'testQuery',query: {testQuery:'testQuery'}}),传递的参数会拼接在跳转地址的后面。使用this. router.push(path:′testQuery′,query:testQuery:′testQuery′),传递的参数会拼接在跳转地址的后面。使用this.route.params.key取值
    params方式:
    this. r o u t e r . p u s h ( n a m e : ′ t e s t P a r a m s ′ , p a r a m s : t e s t P a r a m s : ′ t e s t P a r a m s ′ ) , 传 递 的 参 数 不 会 拼 接 在 跳 转 的 后 面 。 使 用 t h i s . router.push({name: 'testParams',params: {testParams:'testParams'}}),传递的参数不会拼接在跳转的后面。使用this. router.push(name:′testParams′,params:testParams:′testParams′),传递的参数不会拼接在跳转的后面。使用this.route.query.key取值

    二、实现代码

    1.index.js代码

    const router = new Router({
        routes: [
            {
                path:'/test',
                component: test,
            },
            {
                name: 'testParams',
                path:'/testParams',
                component: TestParams,
            },
            {
                path:'/testQuery',
                component: TestQuery,
            }
        ]
    })

    2.test.vue代码

    <template>
      <div class="test">
        <button v-on:click="testParams">params</button>
        <button v-on:click="testQuery">query</button>
      </div>
    </template>
    <script>
    export default {
      name: "test",
      data(){
        return {
    
        }
      },
      methods:{
        testParams(){
          this.$router.push({name: 'testParams',params: {testParams:'testParams'}});
        },
        testQuery(){
          this.$router.push({path: 'testQuery',query: {testQuery:'testQuery'}});
        }
      }
    }
    </script>

    3.testParams代码

    <template>
      <div id="testParams">
        {{testParams}}
      </div>
    </template>
    
    <script>
    export default {
      name: "TestParams",
      data() {
        return{
          testParams: ''
        }
      },mounted() {
        this.testParams = this.$route.params.testParams;
      }
    }
    </script>

    4.testParams代码

    <template>
      <div id="testQuery">
        {{testQuery}}
      </div>
    </template>
    
    <script>
    export default {
      name: "TestQuery",
      data(){
        return{
          testQuery: ''
        }
      },mounted() {
        this.testQuery = this.$route.query.testQuery;
      }
    }
    </script>

    5.效果

    this.$router.push携带参数跳转页面怎么实现

    this.$router.push携带参数跳转页面怎么实现

    this.$router.push携带参数跳转页面怎么实现

    以上就是关于“this.$router.push携带参数跳转页面怎么实现”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。

    向AI问一下细节

    免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

    AI