错误:期望onClick侦听器成为一个函数,而是使用reactjs

时间:2017-07-03 15:43:39

标签: javascript reactjs redux

我正在使用onClick函数并尝试使用它传递一个对象。我需要该对象使功能工作。但由于某种原因,它给了我这个错误。

错误来自我在每个评论上呈现的删除按钮的onClick函数。如果我删除我传递的注释,则错误消失(因此函数本身不是问题)。我不确定我是否通过错误或什么传递评论。

正如我通常所做的那样,如果您要求更多信息或者希望我尝试控制日志,我会将其放入编辑中,这样评论就不会变得拥挤,其他人也会更容易看到。

    renderCommentsButtons(comment) {
    const { post, user, auth } = this.props;

    if(!user) {
      return (<div></div>);
    }

    if(auth) {
      if(user._id === comment.author.id) {
        return (
          <div>
            <button
              onClick={this.deleteComment, comment}
              className="btn btn-xs btn-danger">
              Delete
            </button>
            <Link
              to={`/posts/${post._id}/comments/${comment._id}/edit`}
              className="btn btn-xs btn-warning">
              Edit
            </Link>
          </div>
        )
      }
    }
  }

  renderComments() {
    const { post } = this.props;

    return post.comments.map((comment) => {
      return (
        <li className="list-group-item" key={comment._id}>
          <div>
            {comment.text} : {comment.author.email}
          </div>
          {this.renderCommentsButtons(comment)}
        </li>
      );
    });
  }

  deleteComment({ author, _id}) {
    const {id} = this.props.match.params;
    const {user} = this.props;

    if(this.props.auth) {
      if(user._id === author.id){
        this.props.deleteComments(id, _id, () => {
          this.props.history.push(`/posts/${id}`);
        });
      }
    }
  }

1 个答案:

答案 0 :(得分:5)

试试这个:

<button
  onClick={() => this.deleteComment(comment)}
  className="btn btn-xs btn-danger">
  Delete
</button>

您没有正确传递评论,onClick只接受一个函数,如果您想传递参数,您必须像上面那样进行。