最全的Vue組件通信方式總結

来源:https://www.cnblogs.com/Joe-and-Joan/archive/2019/07/28/11258832.html
-Advertisement-
Play Games

1、一圖認清組件關係名詞 父子關係:A與B、A與C、B與D、C與E 兄弟關係:B與C 隔代關係:A與D、A與E 非直系親屬:D與E 總結為三大類: 父子組件之間通信 兄弟組件之間通信 跨級通信 2、8種通信方式及使用總結 props / $emit $children / $parent provi ...


1、一圖認清組件關係名詞

  • 父子關係:A與B、A與C、B與D、C與E
  • 兄弟關係:B與C
  • 隔代關係:A與D、A與E
  • 非直系親屬:D與E

總結為三大類:

  • 父子組件之間通信
  • 兄弟組件之間通信
  • 跨級通信

 

2、8種通信方式及使用總結

  • props / $emit

  • $children / $parent

  • provideinject

  • ref / refs

  • eventBus

  • Vuex

  • localStorage / sessionStorage

  • $attrs與 $listeners

 

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

  • 父子組件通信: props$parent / $childrenprovide / inject ; ref ; $attrs / $listeners

  • 兄弟組件通信: eventBus ; vuex

  • 跨級通信: eventBus;Vuex;provide / inject 、$attrs / $listeners

 

3、8種通信方式詳解

  • props / $emit

    • 1. 父組件向子組件傳值

      下麵通過一個例子說明父組件如何向子組件傳遞數據:在子組件article.vue中如何獲取父組件section.vue中的數據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>

      總結: prop 只可以從上一級組件傳遞到下一級組件(父子組件),即所謂的單向數據流。而且 prop 只讀,不可被修改,所有修改都會失效並警告。

    • 2. 子組件向父組件傳值

      對於$emit 我自己的理解是這樣的: $emit綁定一個自定義事件, 當這個語句被執行時, 就會將參數arg傳遞給父組件,父組件通過v-on監聽並接收參數。 通過一個例子,說明子組件如何向父組件傳遞數據。 在上個例子的基礎上, 點擊頁面渲染出來的ariticleitem, 父組件中顯示在數組中的下標
      // 父組件中
      <template>
        <div class="section">
          <com-article :articles="articleList" @onEmitIndex="onEmitIndex"></com-article>
          <p>{{currentIndex}}</p>
        </div>
      </template>
      
      <script>
      import comArticle from './test/article.vue'
      export default {
        name: 'HelloWorld',
        components: { comArticle },
        data() {
          return {
            currentIndex: -1,
            articleList: ['紅樓夢', '西游記', '三國演義']
          }
        },
        methods: {
          onEmitIndex(idx) {
            this.currentIndex = idx
          }
        }
      }
      </script>
      <template>
        <div>
          <div v-for="(item, index) in articles" :key="index" @click="emitIndex(index)">{{item}}</div>
        </div>
      </template>
      
      <script>
      export default {
        props: ['articles'],
        methods: {
          emitIndex(index) {
            this.$emit('onEmitIndex', index)
          }
        }
      }
      </script>
  • $children / $parent

    • 通過$parent$children就可以訪問組件的實例,拿到實例代表什麼?代表可以訪問此組件的所有方法和data。接下來就是怎麼實現拿到指定組件的實例。
      // 父組件中
      <template>
        <div class="hello_world">
          <div>{{msg}}</div>
          <com-a></com-a>
          <button @click="changeA">點擊改變子組件值</button>
        </div>
      </template>
      
      <script>
      import ComA from './test/comA.vue'
      export default {
        name: 'HelloWorld',
        components: { ComA },
        data() {
          return {
            msg: 'Welcome'
          }
        },
      
        methods: {
          changeA() {
            // 獲取到子組件A
            this.$children[0].messageA = 'this is new value'
          }
        }
      }
      </script>
      // 子組件中
      <template>
        <div class="com_a">
          <span>{{messageA}}</span>
          <p>獲取父組件的值為:  {{parentVal}}</p>
        </div>
      </template>
      
      <script>
      export default {
        data() {
          return {
            messageA: 'this is old'
          }
        },
        computed:{
          parentVal(){
            return this.$parent.msg;
          }
        }
      }
      </script>
      要註意邊界情況,如在#app上拿$parent得到的是new Vue()的實例,在這實例上再拿$parent得到的是undefined,而在最底層的子組件拿$children是個空數組。也要註意得到$parent$children的值不一樣,$children 的值是數組,而$parent是個對象
    • 總結:上面兩種方式用於父子組件之間的通信, 而使用props進行父子組件通信更加普遍; 二者皆不能用於非父子組件之間的通信
  • provideinject

    • provideinject 是vue2.2.0新增的api, 簡單來說就是父組件中通過provide來提供變數, 然後再子組件中通過inject來註入變數。
    • 註意: 這裡不論子組件嵌套有多深, 只要調用了inject 那麼就可以註入provide中的數據,而不局限於只能從當前父組件的props屬性中回去數據
    • // 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 元素;如果用在子組件上,引用就指向組件實例,可以通過實例直接調用組件的方法或訪問數據, 我們看一個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中可以使用它來作為溝通橋梁的概念, 就像是所有組件共用相同的事件中心,可以向該中心註冊發送事件或接收事件, 所以組件都可以通知其他組件。
    • eventBus也有不方便之處, 當項目較大,就容易造成難以維護的災難
    • 在Vue的項目中怎麼使用eventBus來實現組件之間的數據通信呢?具體通過下麵幾個步驟
    • 1. 初始化

      // event-bus.js
      
      import Vue from 'vue'
      export const EventBus = new Vue()
    • 2. 發送事件

      <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 中發送事件
      
      <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>
    • 3. 接收事件

      // 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>

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

    • 4. 移除事件監聽者
      如果想移除事件的監聽, 可以像下麵這樣操作:

      import { eventBus } from 'event-bus.js'
      EventBus.$off('addition', {})
  • Vuex

    • 1. Vuex介紹

      Vuex 是一個專為 Vue.js 應用程式開發的狀態管理模式。它採用集中式存儲管理應用的所有組件的狀態,並以相應的規則保證狀態以一種可預測的方式發生變化. Vuex 解決了多個視圖依賴於同一狀態來自不同視圖的行為需要變更同一狀態的問題,將開發者的精力聚焦於數據的更新而不是數據在組件之間的傳遞上

      2. Vuex各個模塊

      1. state:用於數據的存儲,是store中的唯一數據源
      2. getters:如vue中的計算屬性一樣,基於state數據的二次包裝,常用於數據的篩選和多個數據的相關性計算
      3. mutations:類似函數,改變state數據的唯一途徑,且不能用於處理非同步事件
      4. actions:類似於mutation,用於提交mutation來改變狀態,而不直接變更狀態,可以包含任意非同步操作
      5. modules:類似於命名空間,用於項目中將各個模塊的狀態分開定義和操作,便於維護

      3. Vuex實例應用

      // 父組件
      
      <template>
        <div id="app">
          <ChildA/>
          <ChildB/>
        </div>
      </template>
      
      <script>
        import ChildA from './components/ChildA' // 導入A組件
        import ChildB from './components/ChildB' // 導入B組件
      
        export default {
          name: 'App',
          components: {ChildA, ChildB} // 註冊A、B組件
        }
      </script>
      // 子組件childA
      
      <template>
        <div id="childA">
          <h1>我是A組件</h1>
          <button @click="transform">點我讓B組件接收到數據</button>
          <p>因為你點了B,所以我的信息發生了變化:{{BMessage}}</p>
        </div>
      </template>
      
      <script>
        export default {
          data() {
            return {
              AMessage: 'Hello,B組件,我是A組件'
            }
          },
          computed: {
            BMessage() {
              // 這裡存儲從store里獲取的B組件的數據
              return this.$store.state.BMsg
            }
          },
          methods: {
            transform() {
              // 觸發receiveAMsg,將A組件的數據存放到store里去
              this.$store.commit('receiveAMsg', {
                AMsg: this.AMessage
              })
            }
          }
        }
      </script>
      // 子組件 childB
      
      <template>
        <div id="childB">
          <h1>我是B組件</h1>
          <button @click="transform">點我讓A組件接收到數據</button>
          <p>因為你點了A,所以我的信息發生了變化:{{AMessage}}</p>
        </div>
      </template>
      
      <script>
        export default {
          data() {
            return {
              BMessage: 'Hello,A組件,我是B組件'
            }
          },
          computed: {
            AMessage() {
              // 這裡存儲從store里獲取的A組件的數據
              return this.$store.state.AMsg
            }
          },
          methods: {
            transform() {
              // 觸發receiveBMsg,將B組件的數據存放到store里去
              this.$store.commit('receiveBMsg', {
                BMsg: this.BMessage
              })
            }
          }
        }
      </script>

      vuex的store.js

      import Vue from 'vue'
      import Vuex from 'vuex'
      Vue.use(Vuex)
      const state = {
        // 初始化A和B組件的數據,等待獲取
        AMsg: '',
        BMsg: ''
      }
      
      const mutations = {
        receiveAMsg(state, payload) {
          // 將A組件的數據存放於state
          state.AMsg = payload.AMsg
        },
        receiveBMsg(state, payload) {
          // 將B組件的數據存放於state
          state.BMsg = payload.BMsg
        }
      }
      
      export default new Vuex.Store({
        state,
        mutations
      })

       

      vuex 是 vue 的狀態管理器,存儲的數據是響應式的。但是並不會保存起來,刷新之後就回到了初始狀態, 具體做法應該在vuex里數據改變的時候把數據拷貝一份保存到localStorage裡面,刷新之後,如果localStorage里有保存的數據,取出來再替換store里的state。
      let defaultCity = "上海"
      try {   // 用戶關閉了本地存儲功能,此時在外層加個try...catch
        if (!defaultCity){
          defaultCity = JSON.parse(window.localStorage.getItem('defaultCity'))
        }
      }catch(e){}
      export default new Vuex.Store({
        state: {
          city: defaultCity
        },
        mutations: {
          changeCity(state, city) {
            state.city = city
            try {
            window.localStorage.setItem('defaultCity', JSON.stringify(state.city));
            // 數據改變的時候把數據拷貝一份保存到localStorage裡面
            } catch (e) {}
          }
        }
      })

      這裡需要註意的是:由於vuex里,我們保存的狀態,都是數組,而localStorage只支持字元串,所以需要用JSON轉換:

      JSON.stringify(state.subscribeList);   // array -> string
      JSON.parse(window.localStorage.getItem("subscribeList"));    // string -> array 
  • localStorage / sessionStorage

    • 這種通信比較簡單,缺點是數據和狀態比較混亂,不太容易維護。 通過window.localStorage.getItem(key)獲取數據 通過window.localStorage.setItem(key,value)存儲數據
    • 註意用JSON.parse() / JSON.stringify() 做數據格式轉換 localStorage / sessionStorage可以結合vuex, 實現數據的持久保存,同時使用vuex解決數據和狀態混亂問題.
  • $attrs與 $listeners

    • 現在我們來討論一種情況, 我們一開始給出的組件關係圖中A組件與D組件是隔代關係, 那它們之前進行通信有哪些方式呢?

      1. 使用props綁定來進行一級一級的信息傳遞, 如果D組件中狀態改變需要傳遞數據給A, 使用事件系統一級級往上傳遞
      2. 使用eventBus,這種情況下還是比較適合使用, 但是碰到多人合作開發時, 代碼維護性較低, 可讀性也低
      3. 使用Vuex來進行數據管理, 但是如果僅僅是傳遞數據, 而不做中間處理,使用Vuex處理感覺有點大材小用了.

      vue2.4中,為瞭解決該需求,引入了$attrs 和$listeners , 新增了inheritAttrs 選項。 在版本2.4以前,預設情況下,父作用域中不作為 prop 被識別 (且獲取) 的特性綁定 (class 和 style 除外),將會“回退”且作為普通的HTML特性應用在子組件的根元素上。

    • $attrs:包含了父作用域中不被 prop 所識別 (且獲取) 的特性綁定 (class 和 style 除外)。當一個組件沒有聲明任何 prop 時,這裡會包含所有父作用域的綁定 (class 和 style 除外),並且可以通過 v-bind="$attrs" 傳入內部組件。通常配合 inheritAttrs 選項一起使用。 $listeners:包含了父作用域中的 (不含 .native 修飾器的) v-on 事件監聽器。它可以通過 v-on="$listeners" 傳入內部組件
    • 接下來看一個跨級通信的例子:

       

      // app.vue
      // index.vue
      
      <template>
        <div>
          <child-com1
            :name="name"
            :age="age"
            :gender="gender"
            :height="height"
            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); 
          // { "gender": "女", "height": "158", "title": "程式員成長" }
        }
      };
      </script>



 額外補充:

V-model

父組件通過v-model傳遞值給子組件時,會自動傳遞一個value的prop屬性,

子組件中通過this.$emit(‘input',val)自動修改v-model綁定的值,下麵看個例子。

 

父組件:

<template>
    <div>
        <child v-model="total"></child>
        <button @click="increse">增加5</button>
    </div>
</template>

<script>
import Child from "./child.vue"
export default {
    components: {
        Child
    },
    data: function () {
        return {
            total: 0
        };
    },
    methods: {
        increse: function () {
            this.total += 5;
        }
    }
}
</script>

子組件:

<template>
    <div>
        <span>{{value}}</span>
        <button @click="reduce">減少5</button>
    </div>
</template>

<script>
export default {
    props: {
        value: Number  // 註意這裡是value
    },
    methods: {
        reduce: function(){
            this.$emit("input", this.value - 5) // 事件為input
        }
    }
}
</script>

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 我們來說一下表的增刪改查的基本語法: 首先建立一個簡單的薪資表: create table salary(id int primary key auto_increment,sname varchar(10) not null default ' ',gender char(1) not null ...
  • 在日常的產品項目需求中,經常會有列表展示類的需求,在Android中常用的做法是收集數據源,然後創建列表適配器Adapter,將數據源傳遞到Adapter中,最終進行列表數據的展示,那麼在Flutter中如何處理列表數據呢? 在Flutter中,用ListView來顯示列表項,其支持垂直和水平方向... ...
  • float浮動會使父元素高度塌陷,父級元素不能被撐開,所以導致背景顏色不能被撐開 解決方法: ...
  • 1. 對象的簡單介紹與一些註意事項 JavaScript中具有幾個簡單數據類型:數字、字元串、布爾值、null值以及undefined值。除此之外其餘所有值(包括數組、函數,甚至正則表達式)都是對象。數字、字元串以及布爾值錶面是對象(因為他們具有方法),但它們是不可變的,只是JavaScript在引 ...
  • 2019/07/28 【首先聲明】:創建博客是想分享HTML5+CSS+JavaScript基礎知識,幫助剛開始學習的萌新掌握基礎的知識,除了按照從前往後,從易而難的順序系統的分享相關知識帖,也會適當的在每個技術知識帖子最下方,附上幾個適合當前分享出來的知識點的練習題,然後在下一個帖子的開頭,會先分 ...
  • 最近學習cesium的3D引擎,有關圖層切換的例子比較少,在官網上看見了一些例子加以自己的理解。投機了一種近似於圖層切換的效果。 這種圖層切換每次點擊按鈕時,會把其他的數據和實體給刪除。然後再創建或載入一個新的 閑話不多說我們直接上代碼 ...
  • 標題黨一時爽,一直標題黨一直爽 還在上大學那會兒,我就喜歡玩 Photoshop。後來寫網頁的時候,由於自己太菜,好多花里胡哨的效果都得藉助 Photoshop 實現,當時就特別希望 CSS 能像 Photoshop 一樣處理圖片。 隨著對 CSS 的瞭解越多,我發現 CSS 有很多平時用得少(或者 ...
  • 也可以使用“shortcut icon” short icon,特質瀏覽器中地址欄左側顯示的圖標,一般大小為16*16,尾碼名為icon; icon 指的是圖標,格式可以PNG|GIF|JPEG,尺寸一般為16*16,24*24,36*36; ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...