亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

    平山县| 沾益县| 个旧市| 中超| 襄樊市| 基隆市| 海安县| 平乐县| 佛坪县| 周至县| 宝山区| 桐城市| 乡宁县| 阿拉善左旗| 汤原县| 方正县| 石城县| 荥经县| 射阳县| 中卫市| 十堰市| 武功县| 昌图县| 浏阳市| 都兰县| 祁门县| 那坡县| 苍梧县| 东安县| 正镶白旗| 惠水县| 自贡市| 汨罗市| 句容市| 嘉祥县| 同德县| 平塘县| 松溪县| 镇巴县| 长泰县| 尼玛县|