您好,登錄后才能下訂單哦!
小編給大家分享一下Vue2有哪些組件通訊,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
下面把每一種組件通信方式的寫法一一列出
父組件向子組件傳送數據,這應該是最常用的方式了
子組件接收到數據之后,不能直接修改父組件的數據。會報錯,所以當父組件重新渲染時,數據會被覆蓋。如果子組件內要修改的話推薦使用 computed
// Parent.vue 傳送 <template> <child :msg="msg"></child> </template> // Child.vue 接收 export default { // 寫法一 用數組接收 props:['msg'], // 寫法二 用對象接收,可以限定接收的數據類型、設置默認值、驗證等 props:{ msg:{ type:String, default:'這是默認數據' } }, mounted(){ console.log(this.msg) }, }
可以幫我們實現父組件向子組件傳遞的數據 的雙向綁定,所以子組件接收到數據后可以直接修改,并且會同時修改父組件的數據
// Parent.vue <template> <child :page.sync="page"></child> </template> <script> export default { data(){ return { page:1 } } } // Child.vue export default { props:["page"], computed(){ // 當我們在子組件里修改 currentPage 時,父組件的 page 也會隨之改變 currentPage { get(){ return this.page }, set(newVal){ this.$emit("update:page", newVal) } } } } </script>
和 .sync
類似,可以實現將父組件傳給子組件的數據為雙向綁定,子組件通過 $emit
修改父組件的數據
// Parent.vue <template> <child v-model="value"></child> </template> <script> export default { data(){ return { value:1 } } } // Child.vue <template> <input :value="value" @input="handlerChange"> </template> export default { props:["value"], // 可以修改事件名,默認為 input model:{ event:"updateValue" }, methods:{ handlerChange(e){ this.$emit("input", e.target.value) // 如果有上面的重命名就是這樣 this.$emit("updateValue", e.target.value) } } } </script>
ref 如果在普通的DOM
元素上,引用指向的就是該DOM元素;
如果在子組件上,引用的指向就是子組件實例,然后父組件就可以通過 ref 主動獲取子組件的屬性或者調用子組件的方法
// Child.vue export default { data(){ return { name:"沐華" } }, methods:{ someMethod(msg){ console.log(msg) } } } // Parent.vue <template> <child ref="child"></child> </template> <script> export default { mounted(){ const child = this.$refs.child console.log(child.name) // 沐華 child.someMethod("調用了子組件的方法") } } </script>
子組件通過派發事件的方式給父組件數據,或者觸發父組件更新等操作
// Child.vue 派發 export default { data(){ return { msg: "這是發給父組件的信息" } }, methods: { handleClick(){ this.$emit("sendMsg",this.msg) } }, } // Parent.vue 響應 <template> <child v-on:sendMsg="getChildMsg"></child> // 或 簡寫 <child @sendMsg="getChildMsg"></child> </template> export default { methods:{ getChildMsg(msg){ console.log(msg) // 這是父組件接收到的消息 } } }
多層嵌套組件傳遞數據時,如果只是傳遞數據,而不做中間處理的話就可以用這個,比如父組件向孫子組件傳遞數據時
$attrs:包含父作用域里除 class
和 style
除外的非 props
屬性集合。通過 this.$attrs
獲取父作用域中所有符合條件的屬性集合,然后還要繼續傳給子組件內部的其他組件,就可以通過 v-bind="$attrs"
$listeners:包含父作用域里 .native
除外的監聽事件集合。如果還要繼續傳給子組件內部的其他組件,就可以通過 v-on="$linteners"
使用方式是相同的
// Parent.vue <template> <child :name="name" title="1111" ></child> </template export default{ data(){ return { name:"沐華" } } } // Child.vue <template> // 繼續傳給孫子組件 <sun-child v-bind="$attrs"></sun-child> </template> export default{ props:["name"], // 這里可以接收,也可以不接收 mounted(){ // 如果props接收了name 就是 { title:1111 },否則就是{ name:"沐華", title:1111 } console.log(this.$attrs) } }
$children:獲取到一個包含所有子組件(不包含孫子組件)的 VueComponent
對象數組,可以直接拿到子組件中所有數據和方法等
$parent:獲取到一個父節點的 VueComponent
對象,同樣包含父節點中所有數據和方法等
// Parent.vue export default{ mounted(){ this.$children[0].someMethod() // 調用第一個子組件的方法 this.$children[0].name // 獲取第一個子組件中的屬性 } } // Child.vue export default{ mounted(){ this.$parent.someMethod() // 調用父組件的方法 this.$parent.name // 獲取父組件中的屬性 } }
provide / inject
為依賴注入,說是不推薦直接用于應用程序代碼中,但是在一些插件或組件庫里卻是被常用,所以我覺得用也沒啥,還挺好用的
provide:可以讓我們指定想要提供給后代組件的數據或方法
inject:在任何后代組件中接收想要添加在這個組件上的數據或方法,不管組件嵌套多深都可以直接拿來用
要注意的是 provide
和 inject
傳遞的數據不是響應式的,也就是說用 inject
接收來數據后,provide
里的數據改變了,后代組件中的數據不會改變,除非傳入的就是一個可監聽的對象
所以建議還是傳遞一些常量或者方法
// 父組件 export default{ // 方法一 不能獲取 methods 中的方法 provide:{ name:"沐華", age: this.data中的屬性 }, // 方法二 不能獲取 data 中的屬性 provide(){ return { name:"沐華", someMethod:this.someMethod // methods 中的方法 } }, methods:{ someMethod(){ console.log("這是注入的方法") } } } // 后代組件 export default{ inject:["name","someMethod"], mounted(){ console.log(this.name) this.someMethod() } }
EventBus
是中央事件總線,不管是父子組件,兄弟組件,跨層級組件等都可以使用它完成通信操作
定義方式有三種
/方法一:
// 抽離成一個單獨的 js 文件 Bus.js ,然后在需要的地方引入 // Bus.js import Vue from "vue" export default new Vue()
方法二 :直接掛載到全局
// main.js import Vue from "vue" Vue.prototype.$bus = new Vue()
方法三 :注入到 Vue 根對象上
// main.js import Vue from "vue" new Vue({ el:"#app", data:{ Bus: new Vue() } })
使用如下,以方法一按需引入為例
// 在需要向外部發送自定義事件的組件內 <template> <button @click="handlerClick">按鈕</button> </template> import Bus from "./Bus.js" export default{ methods:{ handlerClick(){ // 自定義事件名 sendMsg Bus.$emit("sendMsg", "這是要向外部發送的數據") } } } // 在需要接收外部事件的組件內 import Bus from "./Bus.js" export default{ mounted(){ // 監聽事件的觸發 Bus.$on("sendMsg", data => { console.log("這是接收到的數據:", data) }) }, beforeDestroy(){ // 取消監聽 Bus.$off("sendMsg") } }
Vuex
是狀態管理器,集中式存儲管理所有組件的狀態。這一塊內容過長,如果基礎不熟的話可以看這個Vuex,然后大致用法如下
比如創建這樣的文件結構
index.js 里內容如下:
import Vue from 'vue' import Vuex from 'vuex' import getters from './getters' import actions from './actions' import mutations from './mutations' import state from './state' import user from './modules/user' Vue.use(Vuex) const store = new Vuex.Store({ modules: { user }, getters, actions, mutations, state }) export default store
然后在 main.js 引入:
import Vue from "vue" import store from "./store" new Vue({ el:"#app", store, render: h => h(App) })
然后在需要的使用組件里:
import { mapGetters, mapMutations } from "vuex" export default{ computed:{ // 方式一 然后通過 this.屬性名就可以用了 ...mapGetters(["引入getters.js里屬性1","屬性2"]) // 方式二 ...mapGetters("user", ["user模塊里的屬性1","屬性2"]) }, methods:{ // 方式一 然后通過 this.屬性名就可以用了 ...mapMutations(["引入mutations.js里的方法1","方法2"]) // 方式二 ...mapMutations("user",["引入user模塊里的方法1","方法2"]) } } // 或者也可以這樣獲取 this.$store.state.xxx this.$store.state.user.xxx
$root
可以拿到 App.vue
里的數據和方法
就是把子組件的數據通過插槽的方式傳給父組件使用,然后再插回來
// Child.vue <template> <div> <slot :user="user"></slot> </div> </template> export default{ data(){ return { user:{ name:"沐華" } } } } // Parent.vue <template> <div> <child v-slot="slotProps"> {{ slotProps.user.name }} </child> </div> </template>
以上是“Vue2有哪些組件通訊”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。