第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

vue動態(tài)路由切換?

vue動態(tài)路由切換?

蕪湖不蕪 2019-03-28 22:15:09
1.導(dǎo)航通過vue-router進行跳轉(zhuǎn), 但是導(dǎo)航的數(shù)據(jù)是動態(tài)可變的, 包括點擊導(dǎo)航的時候需要進行傳參, 自己不知道如何傳參, 麻煩大家?guī)兔匆幌? 謝謝!html      <!-- 導(dǎo)航 -->      <div class="nav">        <ul>          <li @click="typeClick(item.sid)" v-for="item in dictionaryList" :key="item.sid">{{ item.value }}</li>        </ul>      </div>jsexport default {  data() {    return {      dictionaryList: []    };  },  methods: {    dictionaries() {      this.$ajax.get(this.$api.DictionaryList + "tour_ype").then(res => {        this.dictionaryList = res.data.data.dictionaryList;      });    },    typeClick(type) {      if (type == 1) {        this.climaticLandscape(type);      }    },    // 天象與氣候景觀    climaticLandscape(type) {      console.log("type", type);      this.$router.push("/index/tourismresource/climaticlandscape");    },  },  created() {    this.dictionaries();  }};router里的index.js            // 天象與氣候景觀            {              name: 'qhjg',              path: '/index/tourismresource/climaticlandscape',              component: climaticLandscapeComponent,            },在climaticLandscape()里可以打印type傳的值, 但是不知道如何傳參
查看完整描述

3 回答

?
藍山帝景

TA貢獻1843條經(jīng)驗 獲得超7個贊

// 天象與氣候景觀

climaticLandscape(type) {

  console.log("type", type);


  this.$router.push("/index/tourismresource/climaticlandscape");

},

這里的代碼你可以把整個當前對象傳遞過來,然后使用

this.$router.push({


path: "/index/tourismresource/climaticlandscape",

params: {}

});


接受時使用this.$route.params接受即可


查看完整回答
反對 回復(fù) 2019-03-30
  • 3 回答
  • 0 關(guān)注
  • 1417 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號