如何在 React.js 递归地渲染子组件

how to render child components in react.js recursively

本文关键字:组件 递归 React js      更新时间:2023-09-26

我想从它自己的组件中递归添加一个反应组件。我看到了这个树组件的示例,它通过子 TreeNode 映射并以相同的方式添加子节点。不幸的是,它对我根本不起作用。这个想法是有一个简单的注释组件,回复将重复使用相同的组件。

var Comment = React.createClass({
  render: function() {    
    return (
        <div className="comment">
          {/* text and author */}
          <div className="comment-text">
            <span className="author">{this.props.author}</span>         
            <span className="body" dangerouslySetInnerHTML={{__html: this.props.body}} />
          </div>
          {/* replies */}
          <div className="replies">
           {
             this.props.replies.map(function(reply) {
               <Comment body={reply.body} author={reply.author} />
             }.bind(this))
          }
          </div>
      </div>
    );
  }
});

我收到以下错误消息:

未捕获的类型错误:无法构造"注释":请使用"new"运算符,此 DOM 对象构造函数不能作为函数调用。

下面是传递给组件的 JSON 数据的示例。

{ "author" : "Some user",
  "body" : "<div>Great work</div>",
  "replies" : [ { "author" : "A user replying",
        "body" : "<div Yes it was great work</div>"
      },
      { "author" : "Another user replying",
        "body" : "<div It really was great work!</div>"
      }
    ]
}

这是 ES6 中的替代方案:

import React, { Component, PropTypes } from 'react'
export default class Comments extends Component {
  render() {
    const { children } = this.props
    return (
      <div className="comments">
        {children.map(comment =>
          <div key={comment.id} className="comment">
            <span>{comment.content}</span>
            {comment.children && <Comments children={comment.children}/>}
          </div>
        )}
      </div>
    )
  }
}
Comments.propTypes = {
  children: PropTypes.array.isRequired
}

并且是其他一些组件:

<Comments children={post.comments}/>

如果我在 render 方法的顶部将子节点创建为对象,它工作正常。

export default class extends React.Component {
  let replies = null
  if(this.props.replies){
    replies = this.props.replies.map((reply) => {
      return (
        <Comment author={reply.author} body={reply.body} />
      )
    })
  }
  render() {
    return (
      <div className="comment">
        <div className="replies">{ replies }</div>
      </div>
    )
  }
}

最简单的方法是在类中创建一个函数,该函数返回类的实例:

RecursiveComponent.rt.js:

var RecursiveComponent = React.createClass({
 render: function() {
  // JSX
  ....
 },
 renderRecursive: function(param1)
   return React.createElement(RecursiveComponent, {param1: param1});
});

如果你使用 反应模板库:

RecursiveComponent.rt:

<div>
  ...
  <div rt-repeat="recursiveChild in this.props.recursiveItem.recursiveChilds">
            {this.renderRecursive(recursiveChild)}
  </div>
</div>