为了账号安全,请及时绑定邮箱和手机立即绑定

添加删除按钮错误TypeError: Cannot read property 'props' of undefined

在commentList.js中:

<ul className="list-group mb-3">               {comments.map((comment,index)=>               	<li key={index} className="list-group-item">{comment}		<button  onClick={ (e)=> this.props.onDeleteComment(e)}>X</button>               	</li>                      )}            </ul>

APP.js中:

<CommentList comments={this.state.comments} onDeleteComment={this.state.comments.deleteComment}/>
 deleteComment(index) {    let newComments = this.state.comments    newComments.splice(index, 1)    this.setState({      comments: newComments    })  }

这个删除按钮如何做呢?每次点击删除就会显示props undefined

正在回答

1 回答

注意this指向及删除按钮中回调的index参数传递

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

添加删除按钮错误TypeError: Cannot read property 'props' of undefined

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信