如何递归地渲染react.js中的子组件

如何递归地渲染react.js中的子组件,第1张

如何递归地渲染react.js中的子组件

如果我在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>    )  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5646507.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存