VUE的通信方式

前言

本章總結(jié)了vue2.x與vue3.x的通信方式


VUE2.x的通信方式


  1. props傳遞數(shù)據(jù)
  2. 通過(guò) $emit 觸發(fā)自定義事件
  3. 使用 $ref
  4. 作用域插槽(slot)
  5. eventBus
  6. $parent(或$root)與$children
  7. $attrs$listeners
  8. provideinject
  9. Vuex

適合父子間通信props$emit$ref贤徒、slot式廷、$parent$children
適合兄弟組件之間的通信eventBus耍缴、Vuex
祖孫與后代組件之間的通信$attrs/$listeners咕别、provide/inject掀潮、eventBusVuex
復(fù)雜關(guān)系的組件之間的通信Vuex


1. props傳遞數(shù)據(jù)

  • 適用場(chǎng)景:父組件傳遞數(shù)據(jù)給子組件
  • 使用方式:
    ????????子組件設(shè)置props屬性共苛,定義接收父組件傳遞過(guò)來(lái)的參數(shù)
    ????????父組件在使用子組件標(biāo)簽中通過(guò)字面量來(lái)傳遞值
// 父組件
<Children name="jack" age=18 />

// 子組件
props:{    
    name:String // 接收的類型參數(shù)
    age:{    
        type:Number, // 接收的類型為數(shù)值  
        defaule:18  // 默認(rèn)值為18
    }  
}  


2. $emit 觸發(fā)自定義事件

  • 適用場(chǎng)景:子組件傳遞數(shù)據(jù)給父組件
  • 使用方式:
    ????????子組件通過(guò)$emit觸發(fā)自定義事件判没,$emit第二個(gè)參數(shù)為傳遞的數(shù)值
    ????????父組件綁定監(jiān)聽(tīng)器獲取到子組件傳遞過(guò)來(lái)的參數(shù)
// 父組件
<Children @add="cartAdd" /> 

// 子組件
this.$emit('add', 'good')  


3. ref

  • 適用場(chǎng)景:父組件需要獲取到子組件時(shí)
  • 使用方式:
    ????????父組件在使用子組件的時(shí)候設(shè)置ref
    ????????父組件通過(guò)設(shè)置子組件ref來(lái)獲取數(shù)據(jù)
// 父組件
<Children ref="foo" />  
this.$refs.foo  // 獲取子組件實(shí)例,通過(guò)子組件實(shí)例我們就能拿到對(duì)應(yīng)的數(shù)據(jù)及函數(shù)


4. 作用域插槽(slot)

5. EventBus

  • 適用場(chǎng)景:兄弟組件/隔代組件之間的通信
  • 使用方式:
    ????????創(chuàng)建一個(gè)中央時(shí)間總線EventBus
    ????????一個(gè)組件通過(guò)$on監(jiān)聽(tīng)自定義事件
    ????????另一個(gè)組件通過(guò)$emit觸發(fā)事件澄峰,$emit第二個(gè)參數(shù)為傳遞的數(shù)值
// 創(chuàng)建一個(gè)中央時(shí)間總線類  
class Bus {  
  constructor() {  
    this.callbacks = {};   // 存放事件的名字  
  }  
  $on(name, fn) {  
    this.callbacks[name] = this.callbacks[name] || [];  
    this.callbacks[name].push(fn);  
  }  
  $emit(name, args) {  
    if (this.callbacks[name]) {  
      this.callbacks[name].forEach((cb) => cb(args));  
    }  
  }  
}  
  
// main.js  
Vue.prototype.$bus = new Bus() // 將$bus掛載到vue實(shí)例的原型上  
// 一個(gè)組件監(jiān)聽(tīng)自定義事件
this.$bus.$on('foo', function() {});

// 另一個(gè)組件觸發(fā)事件
this.$bus.$emit('foo')  


6. $parent$root$children

  • 適用場(chǎng)景:通過(guò)共同祖輩parent或者root搭建通信僑聯(lián)
  • 兄弟組件之間:
// 兄弟組件
this.$parent.on('add',this.add);

// 另一個(gè)兄弟組件
this.$parent.emit('add');
  • 父子組件之間:
// 子組件獲取到子組件
this.$parent

// 同理,父組件獲取到子組件辟犀,但是是個(gè)列表
this.$children



7. $attrs$listeners

  • 適用場(chǎng)景:祖先傳遞屬性(可以是值俏竞,可以是函數(shù))給子孫
  • $attrs:包含了父作用域中不被認(rèn)為 (且不預(yù)期為) props 的特性綁定 (class 和 style 除外),并且可以通過(guò) v-bind=”$attrs” 傳入內(nèi)部組件。當(dāng)一個(gè)組件沒(méi)有聲明任何 props 時(shí)魂毁,它包含所有父作用域的綁定 (class 和 style 除外)玻佩。
  • $listeners:包含了父作用域中的 (不含 .native 修飾符) v-on 事件監(jiān)聽(tīng)器。它可以通過(guò) v-on=”$listeners” 傳入內(nèi)部組件席楚。它是一個(gè)對(duì)象咬崔,里面包含了作用在這個(gè)組件上的所有事件監(jiān)聽(tīng)器,相當(dāng)于子組件繼承了父組件的事件烦秩。
<!-- father.vue 組件:-->
<template>
   <child :name="name" :age="age" :infoObj="infoObj" @updateInfo="updateInfo" @delInfo="delInfo" />
</template>
<script>
    import Child from '../components/child.vue'

    export default {
        name: 'father',
        components: { Child },
        data () {
            return {
                name: 'Lily',
                age: 22,
                infoObj: {
                    from: '上海',
                    job: 'policeman',
                    hobby: ['reading', 'writing', 'skating']
                }
            }
        },
        methods: {
            updateInfo() {
                console.log('update info');
            },
            delInfo() {
                console.log('delete info');
            }
        }
    }
</script>


<!-- child.vue 組件:-->
<template>
    <grand-son :height="height" :weight="weight" @addInfo="addInfo" v-bind="$attrs" v-on="$listeners"  />
    // 通過(guò) $listeners 將父作用域中的事件垮斯,傳入 grandSon 組件,使其可以獲取到 father 中的事件
</template>
<script>
    import GrandSon from '../components/grandSon.vue'
    export default {
        name: 'child',
        components: { GrandSon },
        props: ['name'],
        data() {
          return {
              height: '180cm',
              weight: '70kg'
          };
        },
        created() {
            console.log(this.$attrs); 
       // 結(jié)果:age, infoObj, 因?yàn)楦附M件共傳來(lái)name, age, infoObj三個(gè)值只祠,由于name被 props接收了兜蠕,所以只有age, infoObj屬性
            console.log(this.$listeners); // updateInfo: f, delInfo: f
        },
        methods: {
            addInfo () {
                console.log('add info')
            }
        }
    }
</script>

<!-- grandSon.vue 組件:-->
<template>
    <div>
        {{ $attrs }} --- {{ $listeners }}
    <div>
</template>
<script>
    export default {
        ... ... 
        props: ['weight'],
        created() {
            console.log(this.$attrs); // age, infoObj, height 
            console.log(this.$listeners) // updateInfo: f, delInfo: f, addInfo: f
            this.$emit('updateInfo') // 可以觸發(fā)隔代組件father中的updateInfo函數(shù)

        }
    }
</script>

簡(jiǎn)易版例子:

// 給Grandson隔代傳值,communication/index.vue  
<Child2 msg="lalala" @some-event="onSomeEvent"></Child2>  
  
// Child2做展開(kāi)  
<Grandson v-bind="$attrs" v-on="$listeners"></Grandson>  
  
// Grandson使?  
<div @click="$emit('some-event', 'msg from grandson')">  
{{msg}}  
</div>  


8. provideinject

  • 適用場(chǎng)景:祖先傳遞值給子孫
// 祖先組件
provide(){  
    return {  
        foo:'foo'  
    }  
}  

// 后代組件
inject:['foo'] // 獲取到祖先組件傳遞過(guò)來(lái)的值  


9. vuex

  • 適用場(chǎng)景: 復(fù)雜關(guān)系的組件數(shù)據(jù)傳遞
  • Vuex作用相當(dāng)于一個(gè)用來(lái)存儲(chǔ)共享變量的容器
    state:包含了store中存儲(chǔ)的各個(gè)狀態(tài)抛寝。
    getter: 類似于 Vue 中的計(jì)算屬性熊杨,根據(jù)其他 getter 或 state 計(jì)算返回值。
    mutation: 一組方法墩剖,是改變store中狀態(tài)的執(zhí)行者猴凹,只能是同步操作。
    action: 一組方法岭皂,其中可以包含異步操作郊霎。
// main.js
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
  state: {
    count: 0,
    todos: [
      { id: 1, text: '...', done: true },
      { id: 2, text: '...', done: false }
    ]
  },
  getter: {
    doneTodos: (state, getters) => {
      return state.todos.filter(todo => todo.done)
    }
  },
  mutations: {
    increment (state, payload) {
      state.count++
    }
  },
  actions: {
    addCount(context) {
      // 可以包含異步操作
      // context 是一個(gè)與 store 實(shí)例具有相同方法和屬性的 context 對(duì)象
    }
  }
})
// 注入到根實(shí)例
new Vue({
  el: '#app',
  // 把 store 對(duì)象提供給 “store” 選項(xiàng),這可以把 store 的實(shí)例注入所有的子組件
  store,
  template: '<App/>',
  components: { App }
});


// 在子組件中使用
// 創(chuàng)建一個(gè) Counter 組件
const Counter = {
  template: `<div>{{ count }}</div>`,
  computed: {
    count () {
      return this.$store.state.count
    },
    doneTodosCount () {
      return this.$store.getters.doneTodosCount
    }
  }
}




VUE3.0的通信方式


  1. props傳遞數(shù)據(jù)
  2. 通過(guò) emit 觸發(fā)自定義事件
  3. 使用 ref
  4. 作用域插槽(slot)
  5. mitt(eventBus)
  6. $parent(或$root)與$children
  7. $attrs$listeners
  8. provideinject
  9. Vuex

適合父子間通信props爷绘、emit书劝、refslot土至、parent购对、children
適合兄弟組件之間的通信mitt(eventBus)、Vuex
祖孫與后代組件之間的通信$attrs/$listeners陶因、provide/inject骡苞、mitt(eventBus)、Vuex
復(fù)雜關(guān)系的組件之間的通信Vuex

1. props傳遞數(shù)據(jù)

  • 適用場(chǎng)景:父組件向子組件傳遞數(shù)據(jù)
  • 使用方式:
    ????????父組件在使用子組件標(biāo)簽中通過(guò)字面量來(lái)傳遞值(與VUE2.x方式相同)
    ????????與VUE2.x相同的是子組件也設(shè)置props屬性配置接受的數(shù)據(jù)楷扬,不同的是vue3.0的prop為setup的第一個(gè)參數(shù)
// 父組件
<child msg="hello"/>

// 子組件
export default defineComponent({
    props: { // 配置要接受的props
        msg: {
            type: String,
            default: () => ''
        }
    },
    setup(props) {
        console.log('props ====', props);
    },
});


2. emit 觸發(fā)自定義事件

  • 適用場(chǎng)景:子組件傳遞數(shù)據(jù)給父組件
  • 使用方式:
    ????????父組件綁定監(jiān)聽(tīng)器獲取到子組件傳遞過(guò)來(lái)的參數(shù)(與VUE2.x方式相同)
    ????????與VUE2.x不同的是:子組件通過(guò)context.emit觸發(fā)自定義事件(contextsetup的第二個(gè)參數(shù)解幽,為上下文),相同的是:emit第二個(gè)參數(shù)為傳遞的數(shù)值
<!-- Father.vue -->
<template>
    <div style="width: 500px; height: 500px; padding: 20px; border: 2px solid #ff00ff;">
        <div>Father:</div>
        <child msg="hello" @todoSth="todoSth"/>
    </div>
</template>
<script lang="ts">
import {
    defineComponent
} from 'vue';
import child from './components/child.vue';
export default defineComponent({
    components: {
        child
    },
    setup() {
        // 父組件綁定監(jiān)聽(tīng)器獲取到子組件傳遞過(guò)來(lái)的參數(shù)
        const todoSth = (text: string) => {
            console.log('text: ', text);
        };
        return {
            todoSth
        };
    },
});
</script>


<!-- Child.vue -->
<template>
    <div style="width: 100%; height: calc(100% - 40px); padding: 20px; box-sizing: border-box; border: 2px solid #00ff00;">
        <div>Child:</div>
        <button @click="setMsg2Parent">點(diǎn)擊按鈕給父組件傳遞信息</button>
    </div>
</template>
<script lang="ts">
import {
    defineComponent
} from 'vue';
export default defineComponent({
    setup(props, context) {
        const setMsg2Parent = () => {
            context.emit('todoSth', 'hi parent!');
        };
        return {
            setMsg2Parent
        };
    },
});
</script>



3. ref

  • 適用場(chǎng)景:父組件需要獲取到子組件時(shí)
  • 使用方式:
    ????????父組件在使用子組件的時(shí)候設(shè)置ref(與VUE2.x方式相同)
    ????????父組件通過(guò)設(shè)置子組件ref來(lái)獲取數(shù)據(jù)
    注:: 1.獲取子組件時(shí)變量名必須與子組件的ref屬性保持一致烘苹;2.必須將獲取到的組件return躲株。
<!-- Father.vue -->
<template>
    <div style="width: 500px; height: 500px; padding: 20px; border: 2px solid #ff00ff;">
        <div>Father:</div>
        <button @click="getChildCom">獲取到子組件并調(diào)用其屬性</button>
        <child ref="childCom" msg="hello"/>
    </div>
</template>
<script lang="ts">
import {
    defineComponent,
    ref
} from 'vue';
import child from './components/child.vue';
export default defineComponent({
    components: {
        child
    },
    setup() {
        const childCom = ref<HTMLElement>(null);
        // 獲取到子組件并調(diào)用其屬性
        const getChildCom = () => {
            childCom.value.childText = '父組件想要改變這個(gè)屬性!';
            childCom.value.childMethod1();
        };
        return {
            childCom,
            getChildCom
        };
    },
});
</script>


<!-- Child.vue -->
<template>
    <div style="width: 100%; height: calc(100% - 40px); padding: 20px; box-sizing: border-box; border: 2px solid #00ff00;">
        <div>Child:</div>
        <p>{{childText}}</p>
    </div>
</template>
<script lang="ts">
import {
    defineComponent,
    reactive,
    toRefs
} from 'vue';
export default defineComponent({
    props: {
        msg: {
            type: String,
            default: () => ''
        }
    },
    setup(props, context) {
        const currStatus = reactive({
            childText: '我是一個(gè)子組件~~~'
        });
        const childMethod1 = () => {
            console.log('這是子組件的一個(gè)方法');
        };
        return {
            childMethod1,
            ...toRefs(currStatus)
        };
    },
});
</script>

事件調(diào)用前

事件調(diào)用后


4. 作用域插槽(slot)

5. mitt

  • 適用場(chǎng)景:兄弟組件/隔代組件之間的通信
  • Vue 3 移除了 $on 霜定、 $off$once 這幾個(gè)事件 API 档悠,應(yīng)用實(shí)例不再實(shí)現(xiàn)事件觸發(fā)接口。
  • 根據(jù)官方文檔在 遷移策略 - 事件 API 的推薦望浩,我們可以用 mitt 或者 tiny-emitter 等第三方插件來(lái)實(shí)現(xiàn) EventBus 辖所。

6. $parent$root$children

  • 適用場(chǎng)景:通過(guò)共同祖輩parent或者root搭建通信僑聯(lián)
  • $children已被廢棄
  • $parent 使用方式與vue2.x有所區(qū)別($root同理)
vue2.0 vue3.0
this.$parent.父組件的方法名/父組件的屬性名 import {getCurrentInstance} from 'vue';

const {proxy} = getCurrentInstance();

proxy.$parent.父組件的方法名/父組件的屬性名


7. $attrs$listeners

  • 適用場(chǎng)景:祖先傳遞屬性(可以是值,可以是函數(shù))給子孫
  • 使用方式與vue2.0一致
  • $attrs:包含了父作用域中不被認(rèn)為 (且不預(yù)期為) props 的特性綁定 (class 和 style 除外)曾雕,并且可以通過(guò) v-bind=”$attrs” 傳入內(nèi)部組件奴烙。當(dāng)一個(gè)組件沒(méi)有聲明任何 props 時(shí),它包含所有父作用域的綁定 (class 和 style 除外)剖张。
  • $listeners:包含了父作用域中的 (不含 .native 修飾符) v-on 事件監(jiān)聽(tīng)器切诀。它可以通過(guò) v-on=”$listeners” 傳入內(nèi)部組件。它是一個(gè)對(duì)象搔弄,里面包含了作用在這個(gè)組件上的所有事件監(jiān)聽(tīng)器幅虑,相當(dāng)于子組件繼承了父組件的事件。
<!-- Father.vue -->
<child msg="hello" attrsText="測(cè)試attrsText" @listenersFun="listenersFun"/>
export default defineComponent({
    components: {
        child
    },
    setup(props, context) {
        const listenersFun = (msg: string) => {
            console.log(msg);
        }
        return {
            listenersFun
        };
    },
});


<!-- Child.vue -->
<grandsun v-bind="$attrs" v-on="$listeners"/>
export default defineComponent({
    components: {
        grandsun
    },
     // 子組件的props沒(méi)有配置attrsText顾犹,故attrsText存在context.attrs中
    props: {
        msg: {
            type: String,
            default: () => ''
        }
    },
});

<!-- Grandsun.vue -->
export default defineComponent({
    setup(props, context) {
       console.log('通過(guò)attrs獲取祖父的屬性值:', context.attrs.attrsText)
       context.emit('listenersFun', '通過(guò)listeners跨級(jí)調(diào)用祖父的函數(shù)');
    },
});



8. provideinject

  • 適用場(chǎng)景:祖先傳遞值給子孫
  • 使用方式與vue2.0略有差異倒庵,vue2.0的provide和inject都為配置項(xiàng),而在 3.x 炫刷, provide 需要導(dǎo)入并在 setup 里啟用擎宝,并且現(xiàn)在是一個(gè)全新的方法。在 3.x 浑玛, provide 需要導(dǎo)入并在 setup 里啟用绍申,并且現(xiàn)在是一個(gè)全新的方法。
// father.vue
import { provide } from 'vue';
// provide出去(key, value)
provide('msg', '祖父?jìng)鬟f一個(gè)屬性給子孫');


// Grandsun.vue
import { inject } from 'vue';
console.log('通過(guò)inject獲取祖父的屬性值:', inject('msg'))










參考:
https://segmentfault.com/a/1190000022708579
https://juejin.cn/post/6844903990052782094#heading-0
https://vue3.chengpeiquan.com/communication.html#%E7%88%B6%E5%AD%90%E7%BB%84%E4%BB%B6%E9%80%9A%E4%BF%A1
https://blog.csdn.net/qq_15601471/article/details/122032034

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末顾彰,一起剝皮案震驚了整個(gè)濱河市极阅,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌涨享,老刑警劉巖筋搏,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異厕隧,居然都是意外死亡奔脐,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門吁讨,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)帖族,“玉大人,你說(shuō)我怎么就攤上這事挡爵。” “怎么了甚垦?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵茶鹃,是天一觀的道長(zhǎng)涣雕。 經(jīng)常有香客問(wèn)我,道長(zhǎng)闭翩,這世上最難降的妖魔是什么挣郭? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮疗韵,結(jié)果婚禮上兑障,老公的妹妹穿的比我還像新娘。我一直安慰自己蕉汪,他們只是感情好流译,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著者疤,像睡著了一般福澡。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上驹马,一...
    開(kāi)封第一講書(shū)人閱讀 49,772評(píng)論 1 290
  • 那天革砸,我揣著相機(jī)與錄音,去河邊找鬼糯累。 笑死算利,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的泳姐。 我是一名探鬼主播效拭,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼仗岸!你這毒婦竟也來(lái)了允耿?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤扒怖,失蹤者是張志新(化名)和其女友劉穎较锡,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體盗痒,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蚂蕴,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了俯邓。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片骡楼。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖稽鞭,靈堂內(nèi)的尸體忽然破棺而出鸟整,到底是詐尸還是另有隱情,我是刑警寧澤朦蕴,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布篮条,位于F島的核電站弟头,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏涉茧。R本人自食惡果不足惜赴恨,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望伴栓。 院中可真熱鬧伦连,春花似錦、人聲如沸钳垮。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)扔枫。三九已至汛聚,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間短荐,已是汗流浹背倚舀。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留忍宋,地道東北人痕貌。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像糠排,于是被迫代替她去往敵國(guó)和親舵稠。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容