“Bind ini bereaksi” Kode Jawaban

Bereaksi fungsi ikatan ke komponen

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

Bind ini bereaksi

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

Jawaban yang mirip dengan “Bind ini bereaksi”

Pertanyaan yang mirip dengan “Bind ini bereaksi”

Lebih banyak jawaban terkait untuk “Bind ini bereaksi” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya