中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

this.$router.push攜帶參數跳轉頁面怎么實現

發布時間:2023-04-03 16:30:09 來源:億速云 閱讀:197 作者: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

    海南省| 清丰县| 九台市| 开远市| 大关县| 桂林市| 乐陵市| 阿城市| 玉田县| 来宾市| 集安市| 西充县| 崇文区| 蓬莱市| 永登县| 岳普湖县| 德化县| 玉门市| 河间市| 靖西县| 吉木萨尔县| 江山市| 新干县| 佛山市| 海丰县| 平远县| 胶州市| 灵璧县| 桐乡市| 静海县| 长治市| 东丽区| 葵青区| 岳阳市| 长兴县| 麦盖提县| 尖扎县| 玉林市| 灵寿县| 隆德县| 瑞昌市|