React.js 如何在组件内部渲染组件?

IT技术 javascript reactjs
2021-04-02 01:29:43

我被困住了。我在单独的文件上有几个单独的组件。如果我在 main.jsx 中渲染它们,如下所示:

ReactDOM.render(<LandingPageBox/>, document.getElementById("page-landing")); 
ReactDOM.render(<TopPlayerBox topPlayersData={topPlayersData}/>, document.getElementById("wrapper profile-data-wrapper"));
ReactDOM.render(<RecentGamesBox recentGamesData={recentGamesData}/>, document.getElementById("history wrapper"));

一切正常,但我想知道这是否是一个好习惯?也许有可能做一些像只有一个 ReactDom.render 这样的事情:

ReactDOM.render(<LandingPageBox recentGamesData={recentGamesData} topPlayersData={topPlayersData}/>, document.getElementById("page-landing")); 

我尝试了不同种类的 LandingPageBox 变体以某种方式包含其他两个组件,但没有运气。它们有时会呈现在页面之外等等。我认为它应该是这样的:

import React from 'react';
import RecentGames from '../RecentGames/RecentGames.jsx';
import TopPlayers from '../TopPlayers/TopPlayers.jsx';
import PageTop from './PageTop.jsx';
import PageBottom from './PageBottom.jsx';

class LandingPageBox extends React.Component {
    render() {
        return (
            <body className="page-landing">
                <PageTop>
                     <TopPlayers topPlayersData={this.props.topPlayersData} />
                </PageTop>
                <PageBottom>
                        <RecentGames recentGamesData=    {this.props.recentGamesData}/>
                    </PageBottom>              
                </body>
            );
        }
    }

export default LandingPageBox;

但是这段代码只呈现 PageTop 和 PageBottom,没有播放器或游戏组件。

所以我的问题是,如何设置 LandingPageBox 文件,以便 TopPlayers 组件在 PageTop 组件内呈现,而RecentGames 组件在 PageBottom 组件内呈现?谢谢你。

3个回答

在你的例子中

return (
        <body className="page-landing">
            <PageTop>
                 <TopPlayers topPlayersData={this.props.topPlayersData} />
            </PageTop>
            <PageBottom>
                 <RecentGames recentGamesData=    {this.props.recentGamesData}/>
            </PageBottom>              
        </body>
       );

正如您已经发现的那样,React 只会呈现顶级自定义组件PageTopPageBottom其他组件(TopPlayersRecentGames嵌套在这些组件中。这意味着什么?React 不只是显示那些嵌套的组件,因为它不知道如何做到这一点。相反,所有渲染都必须由外部组件PageTopPageBottom. React 只是将嵌套的组件传递给它们(PageTopgets TopPlayersPageBottomgets RecentGamesthis.props.children现在取决于外部组件如何处理这些嵌套组件。在您的示例中,您将修改PageTopPageBottom组件以用于{this.props.children}以合适的方式显示其嵌套组件。

谢谢你。很好的解释。一切都像一个魅力。
2021-06-20 01:29:43

你说的对。您可以根据需要使用任意数量的嵌套组件。它是react中的主要概念之一。您可以在this.props.children. 像这样做:

var Parent = React.createClass({
  render: function() {
    return <div>{this.props.children}</div>;
  }
});

ReactDOM.render(
  <Parent>
    <Child/>
    <Child/>
  </Parent>,
  node
);

在这里阅读更多 - https://facebook.github.io/react/docs/multiple-components.html

在这里 - http://buildwithreact.com/article/component-children

很好的参考!
2021-05-23 01:29:43
花了几个小时后,我终于找到了这个!谢了哥们!
2021-06-13 01:29:43
也许你可以告诉我在我的例子中把 {this.props.children} 放在哪里?我对 React.js 很陌生。
2021-06-22 01:29:43

这里 Car 组件位于另一个组件内,即 Garage 组件。当 Garage 组件在渲染时 Car 组件也被渲染。与另一个函数中的一个函数相同的概念。

class Car extends React.Component {
  render() {
    return <h2>I am a Car!</h2>;
  }
}

class Garage extends React.Component {
  render() {
    return (
      <div>
      <h1>Who lives in my Garage?</h1>
      <Car />
      </div>
    );
  }
}

ReactDOM.render(<Garage />, document.getElementById('root'));