react-Portals

晁璞
2023-12-01

作用

一般的React组件总是挂载在父组件的this.props.children上,总是被最近的父组件捕捉到React的根节点上。
Portal是react16提出的将子节点直接渲染React的最顶层方案,portal是真实DOM,存在于DOM tree中,且与在DOM tree中的位置无关

用法

import React, { Component } from "react";

export default class Portal extends Component {
  render() {
    return React.createPortal(this.props.children, domNode);
  }
}

什么时候用

父组件存在overflow:hidden或者z-index时,子组件需要在视觉上跳出父组件,如对话框、悬浮卡以及提示框等

特性:事件冒泡

一个在portal内部处触发的事件,会一直冒泡到DOM tree的祖先

https://zhuanlan.zhihu.com/p/29880992?utm_source=wechat_session&utm_medium=social&from=singlemessage

http://www.ptbird.cn/react-portal-createPortal.html#menu_index_1

 类似资料: