Portals provide a first-class way to render children into a DOM node that exists outside the DOM hierarchy of the parent component.
使用portal将子组件渲染至DOM树上的任意位置,常见的就是弹窗框(最好挂在在最外层的body上)
未做传送之前
Dialog组件渲染在 父组件 DialogPage组件下面
做传送之后
Dialog组件直接渲染在 body下
Portals provide a first-class way to render children into a DOM node that exists outside the DOM hierarchy of the parent component.
使用portal将子组件渲染至DOM树上的任意位置,常见的就是弹窗框(最好挂在在最外层的body上)
Dialog组件渲染在 父组件 DialogPage组件下面
Dialog组件直接渲染在 body下