您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Vue中怎么實(shí)現(xiàn)非父子組件通信,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
組件是Vue核心的一塊內(nèi)容,組件之間的通信也是很基本的開發(fā)需求。組件通信又包括父組件向子組件傳數(shù)據(jù),子組件向父組件傳數(shù)據(jù),非父子組件間的通信。前兩種通信Vue的文檔都說的很清楚,但是第三種文檔上確只有下面的幾句
具體如何去實(shí)現(xiàn)卻沒有很詳細(xì)的說明,于是自己試著進(jìn)行了實(shí)現(xiàn)。先看下簡單的通信效果:
就是點(diǎn)擊了一個(gè)組件,另一個(gè)組件的數(shù)字遞加。
html如下:
<div id="app"> <component-a></component-a> <component-b></component-b> </div>
再來看一下如何實(shí)現(xiàn)每一個(gè)組件:
var bus = new Vue() //首先建立一個(gè)空的Vue實(shí)例作為事件的中轉(zhuǎn) Vue.component('component-a',{ template: `<div><button @click="incrementB">{{masgA}}</button></div>`, //添加點(diǎn)擊事件incrementB ,因?yàn)辄c(diǎn)擊A需要增加B data () { return { masgA : 0 } }, methods: { incrementB: function () { //增加B的事件 bus.$emit('incrementB') //中轉(zhuǎn)站bus 觸發(fā)incrementB事件 } }, mounted: function () { var _this = this bus.$on('incrementA',function(){ //中轉(zhuǎn)站bus自定義increamentA事件用來增加msgA,這個(gè)事件最終由組件B進(jìn)行觸發(fā) _this.masgA ++ }) //bus.$on('incrementA',()=>{ //這里也可以用箭頭函數(shù),就不會(huì)有_this這個(gè)變量了,因?yàn)榧^函數(shù)不會(huì)改變this指向 // this.masgA ++ //}) } })
從上面的代碼可以看出真正的改變方法是通過bus里注冊(cè)監(jiān)聽事件來實(shí)現(xiàn)的,同理代component-b也是一樣
Vue.component('component-b',{ template: `<div><button @click="incrementA">{{masgB}}</button></div>`, data () { return { masgB : 0 } }, methods: { incrementA: function () { bus.$emit('incrementA') } }, mounted: function(){ bus.$on('incrementB',() => { this.masgB ++ }) } })
完整代碼如下,可直接復(fù)制運(yùn)行
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>非父子組件通信</title> </head> <body> <div id="app"> <component-a></component-a> <component-b></component-b> </div> <script src="https://unpkg.com/vue/dist/vue.js"></script> </body> <script> var bus = new Vue() //首先建立一個(gè)空的Vue實(shí)例作為事件的中轉(zhuǎn) Vue.component('component-a',{ template: `<div><button @click="incrementB">{{masgA}}</button></div>`, //添加點(diǎn)擊事件 data () { return { masgA : 0 } }, methods: { incrementB: function () { bus.$emit('incrementB') } }, mounted: function () { var _this = this bus.$on('incrementA',function(){ _this.masgA ++ }) bus.$on('incrementA',()=>{ this.masgA ++ }) } }) Vue.component('component-b',{ template: `<div><button @click="incrementA">{{masgB}}</button></div>`, data () { return { masgB : 0 } }, methods: { incrementA: function () { bus.$emit('incrementA') } }, mounted: function(){ bus.$on('incrementB',() => { this.masgB ++ }) } }) var vm = new Vue({ el: "#app" }) </script>
同時(shí)也可以看出這么做僅有兩個(gè)組件就有些麻煩,事件的流向不是很清晰,所以在出現(xiàn)復(fù)雜的場景時(shí)需要使用VueX進(jìn)行管理。
關(guān)于Vue中怎么實(shí)現(xiàn)非父子組件通信就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。