您好,登錄后才能下訂單哦!
小編給大家分享一下react兄弟組件調用對方的案例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
最近有一個場景是Child2組件點擊讓Child1組件里面的state的值發生改變,Child1是一個公用組件,把里面的state值改為props傳遞,修改內容太多,容易出錯,就想找其他的方法來解決兄弟組件調用方法問題,下面看代碼:
Child1 是第一個子組件
class Child1 extends React.Component { constructor(props) { super(props); this.state = { text:'Child1' }; } onChange=()=>{ this.setState({ text:'Child1 onChange' }) } componentDidMount(){ this.props.onRef&&this.props.onRef(this) } render() { return ( <div>{this.state.text}</div> ); } }
是第二個子組件,和Child1是兄弟組件;
class Child2 extends React.Component { constructor(props) { super(props); this.state = { }; } render() { return ( <div onClick={this.props.onClick}>Child2</div> ); } }
home 父組件
class Home extends React.Component { constructor(props) { super(props); this.state = { }; } onRef=(ref)=>{ this.child1=ref; } render() { return ( <div className="home"> <Child1 onRef={this.onRef}/> <Child2 onClick={ ()=>{ this.child1.onChange&&this.child1.onChange() } } /> </div> ); } }
分析
第一步:在Child1組件的componentDidMount生命周期里面加上this.props.onRef(this),把Child1都傳遞給父組件,
第二步父組件里面 <Child1 onRef={this.onRef}/> this.onRef方法為onRef=(ref)=>{this.child1=ref;};
第三步 Child2組件觸發一個事件的時候,就可以直接這樣調用this.child1.onChange(),Child1組件里面就會直接調用onChange函數,修改text為Child1 onChange;
以上是“react兄弟組件調用對方的案例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。