gpt4 book ai didi

javascript - React Portals 如何在不同的子树中保存来自提供者的上下文?

转载 作者:行者123 更新时间:2023-12-04 13:00:49 24 4
gpt4 key购买 nike

因此,Portals 解决的一个有趣且令人惊奇的属性是即使您的组件需要在其他地方呈现,也可以保留 Provider 的 Context。如果您使用 ContextProvider 包装组件子树,则在该子树中呈现的任何组件都可以访问上下文值。

反过来,如果你在子树之外渲染了一些东西,它就无法访问那个上下文。 React Portals 解决了这个问题,所以如果你想在子树之外渲染一些东西,你可以在同一个子树中进行。我认为 React docs touch on this a little :

Features like context work exactly the same regardless of whether the child is a portal, as the portal still exists in the React tree regardless of position in the DOM tree.



我想我并没有概念化这实际上是如何工作的。一个 React Portal 如何可以访问上下文而不需要在同一个子树中呈现?听起来好像在幕后,Portals 是“React Tree”的一部分?所以一定有什么花哨的“传信息,然后渲染门户逻辑”?要清楚我的问题

门户在保留对上下文值的访问方面究竟是如何工作的?

最佳答案

我已经有一段时间没有收到答案了——我希望深入研究 React 的代码,但还没有机会(希望有一天能更新我的答案),但简而言之,它的工作原理是在幕后,React 正在维护它自己的组件树(您可能听说过这称为虚拟 DOM),在其中,创建的组件仍将存在于虚拟 DOM 的 Provider 子树中。
这个article在这里谈一点

Instead of making two calls to ReactDOM.render(), we create two portals and render both under our top-level Provider. ComponentA and ComponentB will be rendered in two different points in the DOM, but they share the same React tree, thanks to portals.

关于javascript - React Portals 如何在不同的子树中保存来自提供者的上下文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57500580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com