這篇文章將為大家詳細(xì)講解有關(guān)React如何實現(xiàn)無嵌套組件通信,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
10年的木壘哈薩克網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。成都全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整木壘哈薩克建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)公司從事“木壘哈薩克網(wǎng)站設(shè)計”,“木壘哈薩克網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。
當(dāng)兩個組件互不嵌套,處在同個層級或者不同層級上,他們之間要進行通信,有以下幾種常用方法
1、某個組件先將值傳到同一個父組件,然后在通過父組件傳給另外一個組件,用到父子組件傳值
2、使用緩存sessionStorage、localStorage等
3、如果兩個組件之間存在跳轉(zhuǎn),可以使用路由跳轉(zhuǎn)傳值,附上詳細(xì)用法
React學(xué)習(xí)筆記 -- 組件通信之路由傳參(react-router-dom)_前端菜小白leo的博客-CSDN博客
4、event(發(fā)布--訂閱)
首先,安裝event
npm install event -save
新建一個event.js
import { EventEmitter } from 'events'; export default new EventEmitter();
然后另兩個組件處于同層級(不同個父組件或者不同層級都可以)
import React from 'react'; import Grandson from './Grandson'; import GrandsonOther from './GrandsonOther'; class Children extends React.Component { render(){ return ( <div> <Grandson></Grandson> <GrandsonOther></GrandsonOther> </div> ) } } export default Children
組件一,導(dǎo)入event,在componentDidMount階段添加監(jiān)聽addListener(訂閱),在componentWillUnmount移除監(jiān)聽removeListener,事件名稱與組件二中emit一致。
import React from 'react'; import event from '../event'; import { Button } from 'element-react' class Grandson extends React.Component { constructor(props) { super(props); this.state = { msg:'' } this.toOther = this.toOther.bind(this) } toOther(){ event.emit('eventMsg','通過evnet傳過來的值') } render(){ return ( <div style={{backgroundColor:'#13ce66',padding:'10px',width:'200px',margin:'auto',marginTop:'20px'}}> <p>組件二</p> <span style={{color:'blue'}}>{this.state.msg}</span> <div><Button onClick={this.toOther}>event傳值</Button></div> </div> ) } } export default Grandson
組件二,導(dǎo)入event,按鈕綁定方法,使用event.emit觸發(fā)(發(fā)布)事件。
import React from 'react'; import event from '../event'; import { Button } from 'element-react' class Grandson extends React.Component { constructor(props) { super(props); this.state = { msg:'' } this.toOther = this.toOther.bind(this) } toOther(){ event.emit('eventMsg','通過evnet傳過來的值') } render(){ return ( <div style={{backgroundColor:'#13ce66',padding:'10px',width:'200px',margin:'auto',marginTop:'20px'}}> <p>組件二</p> <span style={{color:'blue'}}>{this.state.msg}</span> <div><Button onClick={this.toOther}>event傳值</Button></div> </div> ) } } export default Grandson
點擊按鈕,組件二發(fā)布事件,組件一監(jiān)聽(訂閱)事件,更新內(nèi)容。(如果交換發(fā)布者訂閱者身份,寫法一致)
注意:如果兩個組件使用event進行通信,確保發(fā)布訂閱的事件名稱一致,如上例中 eventMsg
關(guān)于“React如何實現(xiàn)無嵌套組件通信”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
本文題目:React如何實現(xiàn)無嵌套組件通信
路徑分享:http://jinyejixie.com/article28/jpdhjp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、小程序開發(fā)、自適應(yīng)網(wǎng)站、云服務(wù)器、手機網(wǎng)站建設(shè)、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)