欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

vue中有哪些實(shí)現(xiàn)組件通信的方式

本篇文章給大家分享的是有關(guān)vue中有哪些實(shí)現(xiàn)組件通信的方式,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站制作、成都網(wǎng)站制作與策劃設(shè)計(jì),瑞金網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:瑞金等地區(qū)。瑞金做網(wǎng)站價(jià)格咨詢:18982081108

vue組件中關(guān)系說明:

vue中有哪些實(shí)現(xiàn)組件通信的方式

如上圖所示, A與B、A與C、B與D、C與E組件之間是父子關(guān)系; B與C之間是兄弟關(guān)系;A與D、A與E之間是隔代關(guān)系; D與E是堂兄關(guān)系(非直系親屬)

針對(duì)以上關(guān)系我們歸類為:

  • 父子組件之間通信

  • 非父子組件之間通信(兄弟組件、隔代關(guān)系組件等)

本文會(huì)介紹組件間通信的8種方式如下圖目錄所示:并介紹在不同的場景下如何選擇有效方式實(shí)現(xiàn)的組件間通信方式,希望可以幫助小伙伴們更好理解組件間的通信。

vue中有哪些實(shí)現(xiàn)組件通信的方式

一、props / $emit

父組件通過props的方式向子組件傳遞數(shù)據(jù),而通過$emit 子組件可以向父組件通信。

1. 父組件向子組件傳值

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

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

2. 子組件向父組件傳值

對(duì)于$emit 我自己的理解是這樣的: $emit綁定一個(gè)自定義事件, 當(dāng)這個(gè)語句被執(zhí)行時(shí), 就會(huì)將參數(shù)arg傳遞給父組件,父組件通過v-on監(jiān)聽并接收參數(shù)。 通過一個(gè)例子,說明子組件如何向父組件傳遞數(shù)據(jù)。

在上個(gè)例子的基礎(chǔ)上, 點(diǎn)擊頁面渲染出來的ariticle的item, 父組件中顯示在數(shù)組中的下標(biāo)

// 父組件中
<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

vue中有哪些實(shí)現(xiàn)組件通信的方式

上面這張圖片是vue官方的解釋,通過$parent和$children就可以訪問組件的實(shí)例,拿到實(shí)例代表什么?代表可以訪問此組件的所有方法和data。接下來就是怎么實(shí)現(xiàn)拿到指定組件的實(shí)例。

使用方法

// 父組件中
<template>
 <div class="hello_world">
 <div>{{msg}}</div>
 <com-a></com-a>
 <button @click="changeA">點(diǎn)擊改變子組件值</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()的實(shí)例,在這實(shí)例上再拿$parent得到的是undefined,而在最底層的子組件拿$children是個(gè)空數(shù)組。也要注意得到$parent和$children的值不一樣,$children 的值是數(shù)組,而$parent是個(gè)對(duì)象

總結(jié)
上面兩種方式用于父子組件之間的通信, 而使用props進(jìn)行父子組件通信更加普遍; 二者皆不能用于非父子組件之間的通信。

三、provide/ inject

概念:

provide/ inject 是vue2.2.0新增的api, 簡單來說就是父組件中通過provide來提供變量, 然后再子組件中通過inject來注入變量。

注意:這里不論子組件嵌套有多深, 只要調(diào)用了inject 那么就可以注入provide中的數(shù)據(jù),而不局限于只能從當(dāng)前父組件的props屬性中回去數(shù)據(jù)

舉例驗(yàn)證

接下來就用一個(gè)例子來驗(yàn)證上面的描述:

假設(shè)有三個(gè)組件: A.vue、B.vue、C.vue 其中 C是B的子組件,B是A的子組件

// 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 元素;如果用在子組件上,引用就指向組件實(shí)例,可以通過實(shí)例直接調(diào)用組件的方法或訪問數(shù)據(jù), 我們看一個(gè)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中可以使用它來作為溝通橋梁的概念, 就像是所有組件共用相同的事件中心,可以向該中心注冊(cè)發(fā)送事件或接收事件, 所以組件都可以通知其他組件。

eventBus也有不方便之處, 當(dāng)項(xiàng)目較大,就容易造成難以維護(hù)的災(zāi)難

在Vue的項(xiàng)目中怎么使用eventBus來實(shí)現(xiàn)組件之間的數(shù)據(jù)通信呢?具體通過下面幾個(gè)步驟

1. 初始化

首先需要?jiǎng)?chuàng)建一個(gè)事件總線并將其導(dǎo)出, 以便其他模塊可以使用或者監(jiān)聽它.

// event-bus.js

import Vue from 'vue'
export const EventBus = new Vue()

2. 發(fā)送事件

假設(shè)你有兩個(gè)組件: additionNum 和 showNum, 這兩個(gè)組件可以是兄弟組件也可以是父子組件;這里我們以兄弟組件為例:

<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 中發(fā)送事件

<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>計(jì)算和: {{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>

這樣就實(shí)現(xiàn)了在組件addtionNum.vue中點(diǎn)擊相加按鈕, 在showNum.vue中利用傳遞來的 num 展示求和的結(jié)果.

4. 移除事件監(jiān)聽者

如果想移除事件的監(jiān)聽, 可以像下面這樣操作:

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

六、Vuex

1.  Vuex介紹

Vuex 是一個(gè)專為 Vue.js 應(yīng)用程序開發(fā)的狀態(tài)管理模式。它采用集中式存儲(chǔ)管理應(yīng)用的所有組件的狀態(tài),并以相應(yīng)的規(guī)則保證狀態(tài)以一種可預(yù)測的方式發(fā)生變化.

Vuex 解決了多個(gè)視圖依賴于同一狀態(tài)和來自不同視圖的行為需要變更同一狀態(tài)的問題,將開發(fā)者的精力聚焦于數(shù)據(jù)的更新而不是數(shù)據(jù)在組件之間的傳遞上

2. Vuex各個(gè)模塊

  1. state:用于數(shù)據(jù)的存儲(chǔ),是store中的唯一數(shù)據(jù)源

  2. getters:如vue中的計(jì)算屬性一樣,基于state數(shù)據(jù)的二次包裝,常用于數(shù)據(jù)的篩選和多個(gè)數(shù)據(jù)的相關(guān)性計(jì)算

  3. mutations:類似函數(shù),改變state數(shù)據(jù)的唯一途徑,且不能用于處理異步事件

  4. actions:類似于mutation,用于提交mutation來改變狀態(tài),而不直接變更狀態(tài),可以包含任意異步操作

  5. modules:類似于命名空間,用于項(xiàng)目中將各個(gè)模塊的狀態(tài)分開定義和操作,便于維護(hù)

3. Vuex實(shí)例應(yīng)用

// 父組件

<template>
 <div id="app">
  <ChildA/>
  <ChildB/>
 </div>
</template>

<script>
 import ChildA from './components/ChildA' // 導(dǎo)入A組件
 import ChildB from './components/ChildB' // 導(dǎo)入B組件

 export default {
  name: 'App',
  components: {ChildA, ChildB} // 注冊(cè)A、B組件
 }
</script>
// 子組件childA

<template>
 <div id="childA">
  <h2>我是A組件</h2>
  <button @click="transform">點(diǎn)我讓B組件接收到數(shù)據(jù)</button>
  <p>因?yàn)槟泓c(diǎn)了B,所以我的信息發(fā)生了變化:{{BMessage}}</p>
 </div>
</template>

<script>
 export default {
  data() {
   return {
    AMessage: 'Hello,B組件,我是A組件'
   }
  },
  computed: {
   BMessage() {
    // 這里存儲(chǔ)從store里獲取的B組件的數(shù)據(jù)
    return this.$store.state.BMsg
   }
  },
  methods: {
   transform() {
    // 觸發(fā)receiveAMsg,將A組件的數(shù)據(jù)存放到store里去
    this.$store.commit('receiveAMsg', {
     AMsg: this.AMessage
    })
   }
  }
 }
</script>
// 子組件 childB

<template>
 <div id="childB">
  <h2>我是B組件</h2>
  <button @click="transform">點(diǎn)我讓A組件接收到數(shù)據(jù)</button>
  <p>因?yàn)槟泓c(diǎn)了A,所以我的信息發(fā)生了變化:{{AMessage}}</p>
 </div>
</template>

<script>
 export default {
  data() {
   return {
    BMessage: 'Hello,A組件,我是B組件'
   }
  },
  computed: {
   AMessage() {
    // 這里存儲(chǔ)從store里獲取的A組件的數(shù)據(jù)
    return this.$store.state.AMsg
   }
  },
  methods: {
   transform() {
    // 觸發(fā)receiveBMsg,將B組件的數(shù)據(jù)存放到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組件的數(shù)據(jù),等待獲取
 AMsg: '',
 BMsg: ''
}

const mutations = {
 receiveAMsg(state, payload) {
  // 將A組件的數(shù)據(jù)存放于state
  state.AMsg = payload.AMsg
 },
 receiveBMsg(state, payload) {
  // 將B組件的數(shù)據(jù)存放于state
  state.BMsg = payload.BMsg
 }
}

export default new Vuex.Store({
 state,
 mutations
})

七、localStorage / sessionStorage

這種通信比較簡單,缺點(diǎn)是數(shù)據(jù)和狀態(tài)比較混亂,不太容易維護(hù)。

通過window.localStorage.getItem(key)獲取數(shù)據(jù)

通過window.localStorage.setItem(key,value)存儲(chǔ)數(shù)據(jù)

注意用JSON.parse() / JSON.stringify() 做數(shù)據(jù)格式轉(zhuǎn)換
localStorage / sessionStorage可以結(jié)合vuex, 實(shí)現(xiàn)數(shù)據(jù)的持久保存,同時(shí)使用vuex解決數(shù)據(jù)和狀態(tài)混亂問題.

八 $attrs與 $listeners

現(xiàn)在我們來討論一種情況, 我們一開始給出的組件關(guān)系圖中A組件與D組件是隔代關(guān)系, 那它們之前進(jìn)行通信有哪些方式呢?

  1. 使用props綁定來進(jìn)行一級(jí)一級(jí)的信息傳遞, 如果D組件中狀態(tài)改變需要傳遞數(shù)據(jù)給A, 使用事件系統(tǒng)一級(jí)級(jí)往上傳遞

  2. 使用eventBus,這種情況下還是比較適合使用, 但是碰到多人合作開發(fā)時(shí), 代碼維護(hù)性較低, 可讀性也低

  3. 使用Vuex來進(jìn)行數(shù)據(jù)管理, 但是如果僅僅是傳遞數(shù)據(jù), 而不做中間處理,使用Vuex處理感覺有點(diǎn)大材小用了.

在vue2.4中,為了解決該需求,引入了$attrs 和$listeners , 新增了inheritAttrs 選項(xiàng)。 在版本2.4以前,默認(rèn)情況下,父作用域中不作為 prop 被識(shí)別 (且獲取) 的特性綁定 (class 和 style 除外),將會(huì)“回退”且作為普通的HTML特性應(yīng)用在子組件的根元素上。接下來看一個(gè)跨級(jí)通信的例子:

// 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, // 可以關(guān)閉自動(dòng)掛載到組件根元素上的沒有在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>

以上就是vue中有哪些實(shí)現(xiàn)組件通信的方式,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

網(wǎng)頁題目:vue中有哪些實(shí)現(xiàn)組件通信的方式
URL地址:http://aaarwkj.com/article16/gjdcgg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、網(wǎng)頁設(shè)計(jì)公司域名注冊(cè)、網(wǎng)站改版、網(wǎng)站內(nèi)鏈、企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)
亚洲欧美精品成人一区| 亚洲中文字幕一区乱码| 国产av无毛一区二区三区| 免费一区二区三区精品| 一起草视频在线观看视频| 日韩精品在线免费观看了| 国产日韩欧美一区二区三区四区| 免费成人自拍偷拍视频| 久久久久久精品国产毛片| 男人的天堂免费看看av| 裸体性做爰免费视频网站| 欧美日韩一区二区三区在线| 一区二区日韩视频九一蜜桃| 亚洲免费av一区在线观看| 欧美伊香蕉久久综合网99| 亚洲天堂av在线观看| 国产成人亚洲精品午夜国产馆| av资源天堂第一区第二区第三区| 日韩精品亚洲一级在线观看| 日韩精品国产专区一区| 男女性情视频免费大全网站| 青青草免费在线播放视频网站| 久国产亚洲精品久久久极品| 丝袜美腿精尽福利视频网址大全| 九月丁香花开综合网| 天堂av影片在线观看| 欧美日本国产在线一区二区| 久久国产亚洲欧美日韩精品| 亚洲成av人片又粗又长| 国产日韩亚洲欧美在线| 少妇人妻偷人精品系列| 久久成人激情免费视频| 中文字幕乱码亚州精品一区| 一区二区亚洲成人精品| 久久裸体国语精品国产91| 国产高清大片一级黄色| 不卡av免费在线网址| 国产国产成年年人免费看片| 国产精品国产三级国产普通话99| 成人黄片免费在线播放| 亚洲av乱码毛片在线播放|