K
K
KnightForce2017-04-04 22:00:56
React
KnightForce, 2017-04-04 22:00:56

React.js How to get the component associated with an element in an event handler?

class Table extends Component {
  constructor(props) {
    super(props);
    this.handleClick = handleClick.bind(this);
  }

  handleClick(e) {
      console.log(e.target);
  }

  render() {
     return(<div onClick={this.handleClick}></div>);
  }
}

in the e.target DOM element, it's logical.
How to get the component corresponding to this element?
For example, you need some value from the component associated with this element. Or something else.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
davidnum95, 2017-04-05
@KnightForce

I hope the meaning is clear.

class Table extends Component {
  constructor(props) {
    super(props);
    this.handleClick = handleClick.bind(this);
  }

  handleClick(id) {
    console.log(id);
  }

  render() {
    return (
      <div>
      {items.map(item => <Item key={item.id} onClick={() => this.handleClick(item.id)} />)}
      </div>);
  }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question