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