“unir este reaccionamiento” Código de respuesta

Reaccionar la función de enlace al componente

class Foo extends Component {
  constructor(props) {
    super(props);
    this.handleClick = this.handleClick.bind(this);
  }
  handleClick() {
    console.log('Click happened');
  }
  render() {
    return <button onClick={this.handleClick}>Click Me</button>;
  }
}
Depressed Dugong

unir este reaccionamiento

class Foo {
    constructor(name){
      this.name = name
      this.display = this.display.bind(this);
    }
    ...
}
Helpful Hamster

Respuestas similares a “unir este reaccionamiento”

Preguntas similares a “unir este reaccionamiento”

Más respuestas relacionadas con “unir este reaccionamiento” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código