您好,登錄后才能下訂單哦!
小編給大家分享一下react中portal的作用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
react中的portal可以將子組件渲染到非父組件的子樹下,同時父組件仍能對子組件做出反應。使用方法如【ReactDOM.createPortal(this.props.children, this.el);】。
作用:
將子組件渲染到非父組件的子樹下,同時父組件仍能對子組件做出反應,我們甚至不用做過多的dom處理。
舉例:
現在有兩個組件,Dog和Cat,我們想讓Dog的子組件Puppy放到Cat里,當欺負Puppy的時候,即使相隔千里Dog也能感受到。
代碼實現:
先獲取頁面中Dog窩和Cat窩
const dogRoot = document.getElementById("dog-house"); const catRoot = document.getElementById("cat-house");
創建一個Puppy組件
class Puppy extends React.Component { constructor(props) { super(props); // 創建一個容器標簽 this.el = document.createElement("div"); } componentDidMount() { // 把容器標簽掛到 catRoot DOM下 catRoot.append(this.el); } componentWillUnmount() { catRoot.removeChild(this.el); } render() { // 利用portal把Puppy的內容放到容器里 return ReactDOM.createPortal(this.props.children, this.el); } }
創建Dog組件
class Dog extends React.Component { constructor(props) { super(props); this.state = { bark: 0 }; this.handleClick = this.handleClick.bind(this); } handleClick() { // 點擊的時候 bark + 1 this.setState((state) => ({ bark: state.bark + 1, })); } render() { // 看上去Puppy組件是在Dog掛在Dog組件里,但其實它被掛載在其它地方 return ( <div onClick={this.handleClick}> <p>The number of times a big dog barks: {this.state.bark}</p> <h4>Dog: </h4> <p>I can't see my children, but I can feel them</p> <Puppy> <Bully target={'Puppy'}/> </Puppy> <Bully target={'Dog'}/> </div> ); } } ReactDOM.render(<Dog />, dogRoot);
再創建一個代替欺負Puppy的按鈕組件
function Bully(props) { return ( <> <button>Bully the {props.target}</button> </> ); }
以上是“react中portal的作用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。