溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue傳值的方法有哪些

發(fā)布時(shí)間:2021-04-28 09:15:56 來(lái)源:億速云 閱讀:197 作者:小新 欄目:編程語(yǔ)言

這篇文章給大家分享的是有關(guān)vue傳值的方法有哪些的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

vue是什么

Vue是一套用于構(gòu)建用戶界面的漸進(jìn)式JavaScript框架,Vue與其它大型框架的區(qū)別是,使用Vue可以自底向上逐層應(yīng)用,其核心庫(kù)只關(guān)注視圖層,方便與第三方庫(kù)和項(xiàng)目整合,且使用Vue可以采用單文件組件和Vue生態(tài)系統(tǒng)支持的庫(kù)開(kāi)發(fā)復(fù)雜的單頁(yè)應(yīng)用。

vue傳值的方式有:1、props和“$emit”;2、“$attrs”和“$listeners”;3、中央事件總線;4、“v-model”;5、provide和inject;6、“$parent”和“$children”;7、vuex等。

本教程操作環(huán)境:windows7系統(tǒng)、vue2.9.6版,DELL G3電腦。

對(duì)于vue來(lái)說(shuō),組件之間的消息傳遞是非常重要的,下面是我對(duì)組件之間消息傳遞的常用方式的總結(jié)。

  • props和$emit(常用)

  • $attrs和$listeners

  • 中央事件總線(非父子組件間通信)

  • v-model

  • provide和inject

  • $parent和$children

  • vuex

1、props和$emit

父組件向子組件傳遞數(shù)據(jù)是通過(guò)prop傳遞的,子組件傳遞數(shù)據(jù)給父組件是通過(guò)$emit觸發(fā)事件來(lái)做到的.

Vue.component('child',{    data(){      return {        mymessage:this.message      }    },    template:`      <div>        <input type="text" v-model="mymessage" @input="passData(mymessage)"> </div>    `,    props:['message'],//設(shè)置props屬性值,得到父組件傳遞過(guò)來(lái)的數(shù)據(jù)    methods:{      passData(val){        //觸發(fā)父組件中的事件,向父組件傳值        this.$emit('getChildData',val)      }    }  })  Vue.component('parent',{    template:`      <div>        <p>this is parent compoent!</p>        <child :message="message" v-on:getChildData="getChildData"></child>      </div>    `,    data(){      return {        message:'hello'      }    },    methods:{      //執(zhí)行子組件觸發(fā)的事件      getChildData(val){        console.log(val)      }    }  })

在上面的例子中,有父組件parent和子組件child。

  1)父組件傳遞了message數(shù)據(jù)給子組件,并且通過(guò)v-on綁定了一個(gè)getChildData事件來(lái)監(jiān)聽(tīng)子組件的觸發(fā)事件;

  2)子組件通過(guò)props得到相關(guān)的message數(shù)據(jù),最后通過(guò)this.$emit觸發(fā)了getChildData事件

2、$attrs和$listeners

第一種方式處理父子組件之間的數(shù)據(jù)傳輸有一個(gè)問(wèn)題:如果父組件A下面有子組件B,組件B下面有組件C,這時(shí)如果組件A想傳遞數(shù)據(jù)給組件C怎么辦呢? 如果采用第一種方法,我們必須讓組件A通過(guò)prop傳遞消息給組件B,組件B在通過(guò)prop傳遞消息給組件C;要是組件A和組件C之間有更多的組件,那采用這種方式就很復(fù)雜了。Vue 2.4開(kāi)始提供了$attrs和$listeners來(lái)解決這個(gè)問(wèn)題,能夠讓組件A之間傳遞消息給組件C。

Vue.component('C',{
    template:`
      <div>
        <input type="text" v-model="$attrs.messagec" @input="passCData($attrs.messagec)"> </div>
    `,
    methods:{
      passCData(val){
        //觸發(fā)父組件A中的事件
        this.$emit('getCData',val)
      }
    }
  })
  Vue.component('B',{
    data(){
      return {
        mymessage:this.message
      }
    },
    template:`
      <div>
        <input type="text" v-model="mymessage" @input="passData(mymessage)">
        <!-- C組件中能直接觸發(fā)getCData的原因在于 B組件調(diào)用C組件時(shí) 使用 v-on 綁定了$listeners 屬性 -->
        <!-- 通過(guò)v-bind 綁定$attrs屬性,C組件可以直接獲取到A組件中傳遞下來(lái)的props(除了B組件中props聲明的) -->
        <C v-bind="$attrs" v-on="$listeners"></C>
      </div>
    `,
    props:['message'],//得到父組件傳遞過(guò)來(lái)的數(shù)據(jù)
    methods:{
      passData(val){
        //觸發(fā)父組件中的事件
        this.$emit('getChildData',val)
      }
    }
  })
  Vue.component('A',{
    template:`
      <div>
        <p>this is parent compoent!</p>
        <B :messagec="messagec" :message="message" v-on:getCData="getCData" v-on:getChildData="getChildData(message)"></B>
      </div>
    `,
    data(){
      return {
        message:'hello',
        messagec:'hello c' //傳遞給c組件的數(shù)據(jù)
      }
    },
    methods:{
      getChildData(val){
        console.log('這是來(lái)自B組件的數(shù)據(jù)')
      },
      //執(zhí)行C子組件觸發(fā)的事件
      getCData(val){
        console.log("這是來(lái)自C組件的數(shù)據(jù):"+val)
      }
    }
  })

3、中央事件總線

上面兩種方式處理的都是父子組件之間的數(shù)據(jù)傳遞,而如果兩個(gè)組件不是父子關(guān)系呢?這種情況下可以使用中央事件總線的方式。新建一個(gè)Vue事件bus對(duì)象,然后通過(guò)bus.$emit觸發(fā)事件,bus.$on監(jiān)聽(tīng)觸發(fā)的事件。

Vue.component('brother1',{
    data(){      return {
        mymessage:'hello brother1'
      }
    },
    template:`      <p>
        <p>this is brother1 compoent!</p>
        <input type="text" v-model="mymessage" @input="passData(mymessage)">
      </p>    `,
    methods:{
      passData(val){        //觸發(fā)全局事件globalEvent
        bus.$emit('globalEvent',val)
      }
    }
  })
  Vue.component('brother2',{
    template:`      <p>
        <p>this is brother2 compoent!</p>
        <p>brother1傳遞過(guò)來(lái)的數(shù)據(jù):{{brothermessage}}</p>
      </p>    `,
    data(){      return {
        mymessage:'hello brother2',
        brothermessage:''
      }
    },
    mounted(){      //綁定全局事件globalEvent
      bus.$on('globalEvent',(val)=>{        this.brothermessage=val;
      })
    }
  })  //中央事件總線
  var bus=new Vue();  var app=new Vue({
    el:'#app',
    template:`      <p>
        <brother1></brother1>
        <brother2></brother2>
      </p>    `
  })

4、provide和inject

在 Vue.js 的 2.2.0+ 版本中添加加了 provide 和 inject 選項(xiàng)。他們成對(duì)出現(xiàn),用于父級(jí)組件向下傳遞數(shù)據(jù)。

父組件中通過(guò)provider來(lái)提供變量,然后在子組件中通過(guò)inject來(lái)注入變量。不論子組件有多深,只要調(diào)用了inject那么就可以注入provider中的數(shù)據(jù)。而不是局限于只能從當(dāng)前父組件的prop屬性來(lái)獲取數(shù)據(jù),只要在父組件的生命周期內(nèi),子組件都可以調(diào)用。

Vue.component('child',{
    inject:['for'],//得到父組件傳遞過(guò)來(lái)的數(shù)據(jù)
    data(){
      return {
        mymessage:this.for
      }
    },
    template:`})
  Vue.component('parent',{
    template:`this is parent compoent!`,
    provide:{
      for:'test'
    },
    data(){
      return {
        message:'hello'
      }
    }
  })

5、v-model

  父組件通過(guò)v-model傳遞值給子組件時(shí),會(huì)自動(dòng)傳遞一個(gè)value的prop屬性,在子組件中通過(guò)this.$emit(‘input',val)自動(dòng)修改v-model綁定的值

Vue.component('child',{
    props:{
      value:String, //v-model會(huì)自動(dòng)傳遞一個(gè)字段為value的prop屬性    },
    data(){      return {
        mymessage:this.value
      }
    },
    methods:{
      changeValue(){        this.$emit('input',this.mymessage);//通過(guò)如此調(diào)用可以改變父組件上v-model綁定的值      }
    },
    template:`      <p>
        <input type="text" v-model="mymessage" @change="changeValue">
      </p>  })
  Vue.component('parent',{
    template:`      <p>
        <p>this is parent compoent!</p>
        <p>{{message}}</p>
        <child v-model="message"></child>
      </p>    `,
    data(){      return {
        message:'hello'
      }
    }
  })  var app=new Vue({
    el:'#app',
    template:`      <p>
        <parent></parent>
      </p>    `
  })

6、$parent和$children

在組件內(nèi)部可以直接通過(guò)子組件$parent對(duì)父組件進(jìn)行操作,父組件通過(guò)$children對(duì)子組件進(jìn)行操作.

Vue.component('child',{
    props:{
      value:String, //v-model會(huì)自動(dòng)傳遞一個(gè)字段為value的prop屬性    },
    data(){      return {
        mymessage:this.value
      }
    },
    methods:{
      changeValue(){        this.$parent.message = this.mymessage;//通過(guò)如此調(diào)用可以改變父組件的值      }
    },
    template:`      <p>
        <input type="text" v-model="mymessage" @change="changeValue">
      </p>  })
  Vue.component('parent',{
    template:`      <p>
        <p>this is parent compoent!</p>
        <button @click="changeChildValue">test</button >
        <child></child>
      </p>    `,
    methods:{
      changeChildValue(){        this.$children[0].mymessage = 'hello';
      }
    },
    data(){      return {
        message:'hello'
      }
    }
  })  var app=new Vue({
    el:'#app',
    template:`      <p>
        <parent></parent>
      </p>    `
  })

7、vuex處理組件之間的數(shù)據(jù)交互

如果業(yè)務(wù)邏輯復(fù)雜,很多組件之間需要同時(shí)處理一些公共的數(shù)據(jù),這個(gè)時(shí)候才有上面這一些方法可能不利于項(xiàng)目的維護(hù),vuex的做法就是將這一些公共的數(shù)據(jù)抽離出來(lái),然后其他組件就可以對(duì)這個(gè)公共數(shù)據(jù)進(jìn)行讀寫(xiě)操作,這樣達(dá)到了解耦的目的。

8、localStorage / sessionStorage

這種通信比較簡(jiǎn)單,缺點(diǎn)是數(shù)據(jù)和狀態(tài)比較混亂,不太容易維護(hù)。

通過(guò)window.localStorage.getItem(key) 獲取數(shù)據(jù)

通過(guò)window.localStorage.setItem(key,value) 存儲(chǔ)數(shù)據(jù)

注意用JSON.parse() / JSON.stringify() 做數(shù)據(jù)格式轉(zhuǎn)換

localStorage / sessionStorage可以結(jié)合vuex,實(shí)現(xiàn)數(shù)據(jù)的持久保存,同時(shí)使用vuex解決數(shù)據(jù)和狀態(tài)混亂問(wèn)題。

感謝各位的閱讀!關(guān)于“vue傳值的方法有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI