文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2023-07-05 21:12

关注

这篇“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携带参数跳转页面怎么实现”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯