vue組件間的多種通信方式

vue是數(shù)據(jù)驅(qū)動視圖更新的框架, 所以對于vue來說組件間的數(shù)據(jù)通信非常重要银择,那么組件之間如何進行數(shù)據(jù)通信的呢多糠?首先我們需要知道在vue中組件之間存在什么樣的關系, 才更容易理解他們的通信方式, 就好像過年回家,坐著一屋子的陌生人浩考,相互之間怎么稱呼夹孔,這時就需要先知道自己和他們之間是什么樣的關系。vue組件中關系說明:


一析孽、props/$emit

父組件通過props的方式向子組件傳遞數(shù)據(jù)搭伤,而通過$emit 子組件可以向父組件通信。

1.父組件向子組件傳值

下面通過一個例子說明父組件如何向子組件傳遞數(shù)據(jù):在子組件article.vue中如何獲取父組件section.vue中的數(shù)據(jù)articles:['紅樓夢', '西游記','三國演義']袜瞬。

// section父組件
<template>
  <div class="section">
    <com-article :articles="articleList"></com-article>
  </div>
</template>

<script>
import comArticle from './test/article.vue'
export default {
  name: 'HelloWorld',
  components: { comArticle },
  data() {
    return {
      articleList: ['紅樓夢', '西游記', '三國演義']
    }
  }
}
</script>
// 子組件 article.vue
<template>
  <div>
    <span v-for="(item, index) in articles" :key="index">{{item}}</span>
  </div>
</template>

<script>
export default {
  props: ['articles']
}
</script>

總結(jié): prop 只可以從上一級組件傳遞到下一級組件(父子組件)怜俐,即所謂的單向數(shù)據(jù)流。而且 prop 只讀邓尤,不可被修改拍鲤,所有修改都會失效并警告。

2.子組件向父組件傳值

對于$emit 我自己的理解是這樣的 :$emit綁定一個自定義事件, 當這個語句被執(zhí)行時, 就會將參數(shù)arg傳遞給父組件,父組件通過v-on監(jiān)聽并接收參數(shù)裁赠。 通過一個例子,說明子組件如何向父組件傳遞數(shù)據(jù)赴精。
在上個例子的基礎上, 點擊頁面渲染出來的ariticle的item, 父組件中顯示在數(shù)組中的下標

<!-- section父組件 -->
<template>
  <div>
    <h4>父組件</h4>
    <comArticle :articles= "articleList" @onEmitIndex="onEmitIndex"></comArticle>
    <p v-if="currentIndex!=-1">選擇了第{{currentIndex}}個</p>
  </div>
</template>

<script>
import comArticle from './comArticle'
export default {
  data () {
    return {
      currentIndex: -1,
      articleList: ['紅樓夢', '西游記', '三國演義']
    };
  },

  computed: {},

  mounted() {},

  methods: {
    onEmitIndex(index) {
      this.currentIndex = index
    }
  },

  components: {
    comArticle
  }
}

</script>
<style lang='less' scoped>
</style>
<!-- article子組件 -->
<template>
  <div>
    <h4>article子組件</h4>
    <div v-for="(item,index) in articles" :key= "index" @click="emitIndex(index)">{{item}}</div>
  </div>
</template>

<script>
export default {
  props: ['articles'],
  data () {
    return {
    };
  },

  computed: {},

  mounted() {},

  methods: {
    emitIndex(index){
      this.$emit('onEmitIndex',index)
    }
  },

  components: {}
}

</script>
<style lang='less' scoped>
</style>

二佩捞、$children/$parent

子實例可以用 this.$parent 訪問父實例,子實例被推入父實例的 $children 數(shù)組中蕾哟。

子組件應該盡可能地避免依賴父組件的數(shù)據(jù),更不應該去主動修改他的數(shù)據(jù),因為這樣會使得父子組件緊耦合.
通過children就可以訪問組件的實例一忱,拿到實例代表什么?代表可以訪問此組件的所有方法和data谭确。接下來就是怎么實現(xiàn)拿到指定組件的實例帘营。

<!-- 父組件 -->
<template>
  <div>
    <h6>父組件</h6>
    <div>父組件值:{{msg}}</div>
    <button @click="changA">點擊改變子組件值</button>
    <h6>子組件</h6>
    <comB></comB>
    
  </div>
</template>

<script>
import comB from './comB'
export default {
  data () {
    return {
      msg: 'hello world'
    };
  },
  methods: {
    changA() {
      this.$children[0].message = '父組件改變了子組件的值'
    }
  },

  components: {comB}
}

</script>
<style lang='less' scoped>
</style>
<!-- 總組件 -->
<template>
  <div>
    <p>子組件值:{{message}}</p>
    <p>獲取父組件值:{{parentVal}}</p>
    <button @click="changeB">點擊改變父組件中的值</button>
  </div>
</template>

<script>
export default {
  data () {
    return {
      message: '這是子組件'
    };
  },
  computed: {
    parentVal() {
      return this.$parent.msg
    }
  },
  methods: {
    changeB() {
      this.$parent.msg = '子組件改變了父組件的值'
    }
  },
}
</script>

要注意邊界情況,如在#app上拿parent得到的是new Vue()的實例逐哈,在這實例上再拿parent得到的是undefined芬迄,而在最底層的子組件拿children是個空數(shù)組。也要注意得到parent和children的值不一樣昂秃,children 的值是數(shù)組禀梳,而$parent是個對象
總結(jié):
上面兩種方式用于父子組件之間的通信杜窄, 而使用props進行父子組件通信更加普遍; 二者皆不能用于非父子組件之間的通信。

三算途、provide/reject

provide/ reject 是vue2.2.0新增的api, 簡單來說就是父組件中通過provide來提供變量, 然后再子組件中通過reject來注入變量塞耕。

注意: 這里不論子組件嵌套有多深, 只要調(diào)用了inject 那么就可以注入provide中的數(shù)據(jù),而不局限于只能從當前父組件的props屬性中回去數(shù)據(jù)嘴瓤。
接下來就用一個例子來驗證上面的描述: 假設有三個組件: A.vue扫外、B.vue、C.vue 其中 C是B的子組件廓脆,B是A的子組件

// A.vue

<template>
  <div>
    <comB></comB>
  </div>
</template>

<script>
  import comB from '../components/test/comB.vue'
  export default {
    name: "A",
    provide: {
      for: "demo"
    },
    components:{
      comB
    }
  }
</script>
// B.vue

<template>
  <div>
    {{demo}}
    <comC></comC>
  </div>
</template>

<script>
  import comC from '../components/test/comC.vue'
  export default {
    name: "B",
    inject: ['for'],
    data() {
      return {
        demo: this.for
      }
    },
    components: {
      comC
    }
  }
</script>
// C.vue
<template>
  <div>
    {{demo}}
  </div>
</template>

<script>
  export default {
    name: "C",
    inject: ['for'],
    data() {
      return {
        demo: this.for
      }
    }
  }
</script>

四筛谚、ref/refs

ref:如果在普通的 DOM 元素上使用,引用指向的就是 DOM 元素狞贱;如果用在子組件上刻获,引用就指向組件實例,可以通過實例直接調(diào)用組件的方法或訪問數(shù)據(jù)瞎嬉, 我們看一個ref 來訪問組件的例子:

// 子組件 A.vue
export default {
  data () {
    return {
      name: 'Vue.js'
    }
  },
  methods: {
    sayHello () {
      console.log('hello')
    }
  }
}
// 父組件 app.vue

<template>
  <component-a ref="comA"></component-a>
</template>
<script>
  export default {
    mounted () {
      const comA = this.$refs.comA;
      console.log(comA.name);  // Vue.js
      comA.sayHello();  // hello
    }
  }
</script>

五蝎毡、eventBus中央事件總線

eventBus 又稱為事件總線,在vue中可以使用它來作為溝通橋梁的概念, 就像是所有組件共用相同的事件中心氧枣,可以向該中心注冊發(fā)送事件或接收事件沐兵, 所以組件都可以通知其他組件。

eventBus也有不方便之處, 當項目較大,就容易造成難以維護的災難
在Vue的項目中怎么使用eventBus來實現(xiàn)組件之間的數(shù)據(jù)通信呢?具體通過下面幾個步驟

  1. 首先需要創(chuàng)建一個事件總線并將其導出, 以便其他模塊可以使用或者監(jiān)聽它.
// event-bus.js

import Vue from 'vue'
export const EventBus = new Vue()
  1. 發(fā)送事件
    假設你有兩個組件: additionNum 和 showNum, 這兩個組件可以是兄弟組件也可以是父子組件便监;這里我們以兄弟組件為例:
<template>
  <div>
    <show-num-com></show-num-com>
    <addition-num-com></addition-num-com>
  </div>
</template>

<script>
import showNumCom from './showNum.vue'
import additionNumCom from './additionNum.vue'
export default {
  components: { showNumCom, additionNumCom }
}
</script>

// addtionNum.vue 中發(fā)送事件

<template>
  <div>
    <button @click="additionHandle">+加法器</button>    
  </div>
</template>

<script>
import {EventBus} from './event-bus.js'
console.log(EventBus)
export default {
  data(){
    return{
      num:1
    }
  },

  methods:{
    additionHandle(){
      EventBus.$emit('addition', {
        num:this.num++
      })
    }
  }
}
</script>
  1. 接收事件
// showNum.vue 中接收事件

<template>
  <div>計算和: {{count}}</div>
</template>

<script>
import { EventBus } from './event-bus.js'
export default {
  data() {
    return {
      count: 0
    }
  },

  mounted() {
    EventBus.$on('addition', param => {
      this.count = this.count + param.num;
    })
  }
}
</script>

這樣就實現(xiàn)了在組件addtionNum.vue中點擊相加按鈕, 在showNum.vue中利用傳遞來的 num 展示求和的結(jié)果.

  1. 移除事件監(jiān)聽者
    如果想移除事件的監(jiān)聽, 可以像下面這樣操作:
import { eventBus } from 'event-bus.js'
EventBus.$off('addition', {})

封裝中央事件總線插件

中央事件總線插件

// vue-bus.js
const install = function (Vue) {
  const Bus = new Vue({
    methods: {
      emit(event,...args) {
        this.$emit(event,...args);
      },
      on(event,callback) {
        this.$on(event,callback);
      },
      off(event,callback) {
        this.$off(event,callback)
      }
    }
  })
  Vue.prototype.$bus = Bus;
}
export default install;

main.js全局引用即可全局使用

import VueBus from './vue-bus'
Vue.use(VueBus)

使用方式:

// 發(fā)送
this.$bus.emit('事件名稱', {
  // 參數(shù)
})
// 監(jiān)聽
this.$bus.on('事件名稱',param => {
  // 回調(diào)接收參數(shù)
})
// 銷毀
this.$bus.off('事件名稱',{})

六扎谎、vuex

  1. Vuex介紹
    Vuex 是一個專為 Vue.js 應用程序開發(fā)的狀態(tài)管理模式。它采用集中式存儲管理應用的所有組件的狀態(tài)烧董,并以相應的規(guī)則保證狀態(tài)以一種可預測的方式發(fā)生變化.
    Vuex 解決了多個視圖依賴于同一狀態(tài)和來自不同視圖的行為需要變更同一狀態(tài)的問題毁靶,將開發(fā)者的精力聚焦于數(shù)據(jù)的更新而不是數(shù)據(jù)在組件之間的傳遞上
  2. Vuex各個模塊
    state:用于數(shù)據(jù)的存儲,是store中的唯一數(shù)據(jù)源
    getters:如vue中的計算屬性一樣逊移,基于state數(shù)據(jù)的二次包裝预吆,常用于數(shù)據(jù)的篩選和多個數(shù)據(jù)的相關性計算
    mutations:類似函數(shù),改變state數(shù)據(jù)的唯一途徑胳泉,且不能用于處理異步事件
    actions:類似于mutation拐叉,用于提交mutation來改變狀態(tài),而不直接變更狀態(tài)扇商,可以包含任意異步操作
    modules:類似于命名空間凤瘦,用于項目中將各個模塊的狀態(tài)分開定義和操作,便于維護

參考: 官網(wǎng)

七案铺、localStorage/sessionStorage

這種通信比較簡單,缺點是數(shù)據(jù)和狀態(tài)比較混亂,不太容易維護蔬芥。 通過window.localStorage.getItem(key)獲取數(shù)據(jù) 通過window.localStorage.setItem(key,value)存儲數(shù)據(jù)
:::tip
注意用JSON.parse() / JSON.stringify() 做數(shù)據(jù)格式轉(zhuǎn)換 localStorage / sessionStorage可以結(jié)合vuex, 實現(xiàn)數(shù)據(jù)的持久保存,同時使用vuex解決數(shù)據(jù)和狀態(tài)混亂問題.
:::

八、$attrs$listeners

現(xiàn)在我們來討論一種情況, 我們一開始給出的組件關系圖中A組件與D組件是隔代關系坝茎, 那它們之前進行通信有哪些方式呢涤姊?
1.使用props綁定來進行一級一級的信息傳遞, 如果D組件中狀態(tài)改變需要傳遞數(shù)據(jù)給A, 使用事件系統(tǒng)一級級往上傳遞
2.使用eventBus,這種情況下還是比較適合使用, 但是碰到多人合作開發(fā)時, 代碼維護性較低, 可讀性也低
3.使用Vuex來進行數(shù)據(jù)管理, 但是如果僅僅是傳遞數(shù)據(jù), 而不做中間處理,使用Vuex處理感覺有點大材小用了.

在vue2.4中,為了解決該需求嗤放,引入了attrs 和listeners 思喊, 新增了inheritAttrs 選項。 在版本2.4以前次酌,默認情況下父作用域的不被認作props的屬性恨课,將會“回退”且作為普通的HTML特性應用在子組件的根元素上。接下來看一個跨級通信的例子:

// app.vue
// index.vue

<template>
  <div>
    <child-com1
      :name="name"
      :age="18"
      :gender="女"
      :height="158"
      title="程序員成長指北"
    ></child-com1>
  </div>
</template>
<script>
const childCom1 = () => import("./childCom1.vue");
export default {
  components: { childCom1 },
  data() {
    return {
      name: "zhang",
      age: "18",
      gender: "女",
      height: "158"
    };
  }
};
</script>
// childCom1.vue

<template class="border">
  <div>
    <p>name: {{ name}}</p>
    <p>childCom1的$attrs: {{ $attrs }}</p>
    <child-com2 v-bind="$attrs"></child-com2>
  </div>
</template>
<script>
const childCom2 = () => import("./childCom2.vue");
export default {
  components: {
    childCom2
  },
  inheritAttrs: false, // 可以關閉自動掛載到組件根元素上的沒有在props聲明的屬性
  props: {
    name: String // name作為props屬性綁定
  },
  created() {
    console.log(this.$attrs);
     // { "age": "18", "gender": "女", "height": "158", "title": "程序員成長指北" }
  }
};
</script>
// childCom2.vue

<template>
  <div class="border">
    <p>age: {{ age}}</p>
    <p>childCom2: {{ $attrs }}</p>
  </div>
</template>
<script>

export default {
  inheritAttrs: false,
  props: {
    age: String
  },
  created() {
    console.log(this.$attrs); 
    // { "name": "zhang", "gender": "女", "height": "158", "title": "程序員成長指北" }
  }
};
</script>

九岳服、v-model

父組件通過v-model傳遞值給子組件時剂公,會自動傳遞一個value的prop屬性,在子組件中通過this.$emit(‘input’,val)自動修改v-model綁定的值

總結(jié)

常見使用場景可以分為三類:

  • 父子組件通信: props/$emit; $children/$parent; provide / inject ; ref/refs;v-model; listeners
  • 兄弟組件通信: eventBus ; vuex
  • 跨級通信: eventBus吊宋;Vuex纲辽;provide / inject 、listeners
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末璃搜,一起剝皮案震驚了整個濱河市拖吼,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌这吻,老刑警劉巖吊档,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異唾糯,居然都是意外死亡怠硼,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門移怯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來香璃,“玉大人,你說我怎么就攤上這事舟误∑厦耄” “怎么了?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵脐帝,是天一觀的道長同云。 經(jīng)常有香客問我糖权,道長堵腹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任星澳,我火速辦了婚禮疚顷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己腿堤,他們只是感情好阀坏,可當我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著笆檀,像睡著了一般忌堂。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上酗洒,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天士修,我揣著相機與錄音,去河邊找鬼樱衷。 笑死棋嘲,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的矩桂。 我是一名探鬼主播沸移,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼侄榴!你這毒婦竟也來了雹锣?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤牲蜀,失蹤者是張志新(化名)和其女友劉穎笆制,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體涣达,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡在辆,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了度苔。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片匆篓。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖寇窑,靈堂內(nèi)的尸體忽然破棺而出鸦概,到底是詐尸還是另有隱情,我是刑警寧澤甩骏,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布窗市,位于F島的核電站,受9級特大地震影響饮笛,放射性物質(zhì)發(fā)生泄漏咨察。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一福青、第九天 我趴在偏房一處隱蔽的房頂上張望摄狱。 院中可真熱鬧脓诡,春花似錦、人聲如沸媒役。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽酣衷。三九已至交惯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間穿仪,已是汗流浹背商玫。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留牡借,地道東北人拳昌。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像钠龙,于是被迫代替她去往敵國和親炬藤。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,722評論 2 345