Is it possible to pass context into a component instantiated with ReactDOM.render?

后端 未结 2 869
北恋
北恋 2020-12-06 02:46

TL;DR Given the following example code:

ReactDOM.render(, someDomNode);

Is it possible to manually pas

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-06 02:53

    In React 15 and earlier you can use ReactDOM.unstable_renderSubtreeIntoContainer instead of ReactDOM.render. The first argument is the component who's context you want to propagate (generally this)

    In React 16 and later there's the "Portal" API: https://reactjs.org/docs/portals.html

提交回复
热议问题