vue组件之间8种组件通信方式总结
對于vue來說,組件之間的消息傳遞是非常重要的,下面是我對組件之間消息傳遞的各種方式的總結,總共有8種方式。
1.props和$emit
父組件向子組件傳遞數據是通過prop傳遞的,子組件傳遞數據給父組件是通過$emit觸發事件來做到的。
Vue.component('child',{data(){return {mymessage:this.message}},template:`<div><input type="text" v-model="mymessage" @input="passData(mymessage)"> </div>`,props:['message'],//得到父組件傳遞過來的數據methods:{passData(val){//觸發父組件中的事件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:{//執行子組件觸發的事件getChildData(val){console.log(val)}}})var app=new Vue({el:'#app',template:`<div><parent></parent></div>`})在上面的例子中,有父組件parent和子組件child。
1).父組件傳遞了message數據給子組件,并且通過v-on綁定了一個getChildData事件來監聽子組件的觸發事件;
2).子組件通過props得到相關的message數據,最后通過this.$emit觸發了getChildData事件。
2.$attrs和$listeners
第一種方式處理父子組件之間的數據傳輸有一個問題:如果父組件A下面有子組件B,組件B下面有組件C,這時如果組件A想傳遞數據給組件C怎么辦呢?
如果采用第一種方法,我們必須讓組件A通過prop傳遞消息給組件B,組件B在通過prop傳遞消息給組件C;要是組件A和組件C之間有更多的組件,那采用這種方式就很復雜了。Vue 2.4開始提供了$attrs和$listeners來解決這個問題,能夠讓組件A之間傳遞消息給組件C。
3.中央事件總線
上面兩種方式處理的都是父子組件之間的數據傳遞,而如果兩個組件不是父子關系呢?這種情況下可以使用中央事件總線的方式。新建一個Vue事件bus對象,然后通過bus.$emit觸發事件,bus.$on監聽觸發的事件。
Vue.component('brother1',{data(){return {mymessage:'hello brother1'}},template:`<div><p>this is brother1 compoent!</p><input type="text" v-model="mymessage" @input="passData(mymessage)"> </div>`,methods:{passData(val){//觸發全局事件globalEventbus.$emit('globalEvent',val)}}})Vue.component('brother2',{template:`<div><p>this is brother2 compoent!</p><p>brother1傳遞過來的數據:{{brothermessage}}</p></div>`,data(){return {mymessage:'hello brother2',brothermessage:''}},mounted(){//綁定全局事件globalEventbus.$on('globalEvent',(val)=>{this.brothermessage=val;})}})//中央事件總線var bus=new Vue();var app=new Vue({el:'#app',template:`<div><brother1></brother1><brother2></brother2></div>`})4.provide和inject
父組件中通過provider來提供變量,然后在子組件中通過inject來注入變量。不論子組件有多深,只要調用了inject那么就可以注入provider中的數據。而不是局限于只能從當前父組件的prop屬性來獲取數據,只要在父組件的生命周期內,子組件都可以調用。
Vue.component('child',{inject:['for'],//得到父組件傳遞過來的數據data(){return {mymessage:this.for}},template:`<div><input type="tet" v-model="mymessage"> </div>})Vue.component('parent',{template:`<div><p>this is parent compoent!</p><child></child></div>`,provide:{for:'test'},data(){return {message:'hello'}}})var app=new Vue({el:'#app',template:`<div><parent></parent></div>`})5.v-model
父組件通過v-model傳遞值給子組件時,會自動傳遞一個value的prop屬性,在子組件中通過this.$emit(‘input’,val)自動修改v-model綁定的值
Vue.component('child',{props:{value:String, //v-model會自動傳遞一個字段為value的prop屬性},data(){return {mymessage:this.value}},methods:{changeValue(){this.$emit('input',this.mymessage);//通過如此調用可以改變父組件上v-model綁定的值}},template:`<div><input type="text" v-model="mymessage" @change="changeValue"> </div>})Vue.component('parent',{template:`<div><p>this is parent compoent!</p><p>{{message}}</p><child v-model="message"></child></div>`,data(){return {message:'hello'}}})var app=new Vue({el:'#app',template:`<div><parent></parent></div>`})6.$parent和$children
Vue.component('child',{props:{value:String, //v-model會自動傳遞一個字段為value的prop屬性},data(){return {mymessage:this.value}},methods:{changeValue(){this.$parent.message = this.mymessage;//通過如此調用可以改變父組件的值}},template:`<div><input type="text" v-model="mymessage" @change="changeValue"> </div>})Vue.component('parent',{template:`<div><p>this is parent compoent!</p><button @click="changeChildValue">test</button ><child></child></div>`,methods:{changeChildValue(){this.$children[0].mymessage = 'hello';}},data(){return {message:'hello'}}})var app=new Vue({el:'#app',template:`<div><parent></parent></div>`})7.boradcast和dispatch
vue1.0中提供了這種方式,但vue2.0中沒有,但很多開源軟件都自己封裝了這種方式,比如min ui、element ui和iview等。
比如如下代碼,一般都作為一個mixins去使用, broadcast是向特定的父組件,觸發事件,dispatch是向特定的子組件觸發事件,本質上這種方式還是on和on和emit的封裝,但在一些基礎組件中卻很實用。
8.vuex處理組件之間的數據交互
如果業務邏輯復雜,很多組件之間需要同時處理一些公共的數據,這個時候才有上面這一些方法可能不利于項目的維護,vuex的做法就是將這一些公共的數據抽離出來,然后其他組件就可以對這個公共數據進行讀寫操作,這樣達到了解耦的目的。
詳情可參考:https://vuex.vuejs.org/zh-cn/
總結
以上是生活随笔為你收集整理的vue组件之间8种组件通信方式总结的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: docker搭建gitlab服务器(Ce
- 下一篇: Vue 2.x 文件夹目录