Olá, tudo bem?
Gostaria de saber qual a diferença ou recomendação em utilizar o bind no método ou no contrutor? Existe alguma recomendação ou boa prática sobre alguma dessas abordagens?
Exemplo(Método):
<textarea
rows={15}
placeholder="Escreva sua nota..."
className="form-cadastro_input"
onChange={this._handlerChangeText.bind(this)}
/>
Exemplo(construtor):
constructor(props) {
super(props);
this.title = '';
this.text = '';
this.handlerChangeTitle = this.handlerChangeTitle.bind(this)
}