react.display의 하위 구성요소를 재귀적으로 렌더링하는 방법 자체 컴포넌트 내에서 반응 컴포넌트를 재귀적으로 추가하려고 했습니다.이 트리 컴포넌트의 예는 하위 Tree Nodes를 통해 매핑하고 하위 노드를 추가하는 것과 같습니다.유감스럽게도 저는 전혀 효과가 없습니다.단순한 코멘트 컴포넌트를 가지면 응답은 같은 컴포넌트를 재사용할 수 있습니다. var Comment = React.createClass({ render: function() { return ( {/* text and author */} {this.props.author} {/* replies */} { this.props.replies.map(function(reply) { }.bind(this)) } ); } }); 다음의 에러..