Giriş
Function Bind işlemi constuctor veya render metodları içinde yapılabilir.
Function.prototype.bind her seferinde yeni bir nesne yaratır. Bu yüzden constructor içinde yapılması tercih edilmeli.
Constructor İçinde
Örnek
Şöyle yaparız.
Function Bind işlemi constuctor veya render metodları içinde yapılabilir.
Function.prototype.bind her seferinde yeni bir nesne yaratır. Bu yüzden constructor içinde yapılması tercih edilmeli.
Constructor İçinde
Örnek
Şöyle yaparız.
class Child extends Component {
constructor(props) {
super(props);
this.state = {
word: "Something"
};
this.doSomethingElse = this.doSomethingElse.bind(this);
}
doSomethingElse() {
...
}
}
Hiç yorum yok:
Yorum Gönder