一切正常,但我有这个警告Expected to return a value at the end of arrow function array-callback-return
。我尝试使用forEach
而不是map
,但后来<CommentItem />
甚至没有显示。我该如何解决?
return this.props.comments.map((comment) => {
if (comment.hasComments === true) {
return (
<div key={comment.id}>
<CommentItem className="MainComment"/>
{this.props.comments.map(commentReply => {
if (commentReply.replyTo === comment.id) {
return (
<CommentItem className="SubComment"/>
) // return
} // if-statement
}) // map-function
} // map-function __begin
</div> // comment.id
) // return