溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

react中portal的作用

發(fā)布時(shí)間:2020-11-30 13:42:20 來源:億速云 閱讀:187 作者:小新 欄目:web開發(fā)

小編給大家分享一下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è)資訊頻道!

向AI問一下細(xì)節(jié)

免責(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)容。

AI