why react component bind this in constructor

广告位招租
扫码页面底部二维码联系

In many react compon【未经授权禁止转载】【版权所有】唐霜 www.tangshuang.netent’s construc本文作者:唐霜,转载请注明出处。【本文受版权保护】tor, developers alwa著作权归作者所有,禁止商业用途转载。【访问 www.tangshuang.net 获取更多精彩内容】ys bind its methods 著作权归作者所有,禁止商业用途转载。【本文受版权保护】with this, like:

【未经授权禁止转载】【原创不易,请尊重版权】
export default class MyComponent extends Component {
  constructor() {
    this.say = this.say.bind(this)
  }
  ...
}

This sentence seems 著作权归作者所有,禁止商业用途转载。本文版权归作者所有,未经授权不得转载。to be stupid. Is thi【未经授权禁止转载】原创内容,盗版必究。s regulated by react转载请注明出处:www.tangshuang.net转载请注明出处:www.tangshuang.net?

【作者:唐霜】原创内容,盗版必究。【版权所有】唐霜 www.tangshuang.net

No!

未经授权,禁止复制转载。【原创内容,转载请注明出处】

In fact, react compo本文作者:唐霜,转载请注明出处。本文作者:唐霜,转载请注明出处。nent class follow ES本文版权归作者所有,未经授权不得转载。【关注微信公众号:wwwtangshuangnet】6 class std. The rea【访问 www.tangshuang.net 获取更多精彩内容】著作权归作者所有,禁止商业用途转载。son to put this sent【本文受版权保护】原创内容,盗版必究。ence is because when原创内容,盗版必究。【本文首发于唐霜的博客】 you use this.say in【版权所有,侵权必究】【关注微信公众号:wwwtangshuangnet】 your render, you al本文版权归作者所有,未经授权不得转载。【访问 www.tangshuang.net 获取更多精彩内容】way use it as onClic【本文受版权保护】【未经授权禁止转载】k callback function,【本文受版权保护】本文作者:唐霜,转载请注明出处。 this is why this is本文版权归作者所有,未经授权不得转载。【关注微信公众号:wwwtangshuangnet】 not point to instan【原创不易,请尊重版权】【关注微信公众号:wwwtangshuangnet】ce of this component【本文受版权保护】【未经授权禁止转载】. Let’s look i【作者:唐霜】【原创内容,转载请注明出处】nto this code:

【未经授权禁止转载】【本文受版权保护】【原创不易,请尊重版权】
<a href="" onclick="alert(this.href)">click</a>

You know what this p原创内容,盗版必究。【访问 www.tangshuang.net 获取更多精彩内容】oint to here, so whe【转载请注明来源】【转载请注明来源】n you use a componen【未经授权禁止转载】【版权所有】唐霜 www.tangshuang.nett method as a event 本文版权归作者所有,未经授权不得转载。【未经授权禁止转载】callback function, t【原创内容,转载请注明出处】原创内容,盗版必究。his in the function 【原创不易,请尊重版权】原创内容,盗版必究。does not referer to 【原创内容,转载请注明出处】本文版权归作者所有,未经授权不得转载。the instance of comp转载请注明出处:www.tangshuang.net原创内容,盗版必究。onent. So another wa转载请注明出处:www.tangshuang.net转载请注明出处:www.tangshuang.nety to solve this prob【未经授权禁止转载】【访问 www.tangshuang.net 获取更多精彩内容】lem is to bind this 【版权所有,侵权必究】未经授权,禁止复制转载。when you use the met【作者:唐霜】著作权归作者所有,禁止商业用途转载。hod, like:

【访问 www.tangshuang.net 获取更多精彩内容】本文作者:唐霜,转载请注明出处。本文作者:唐霜,转载请注明出处。
export default class MyComponent extends Component {
  constructor() {
    // do not use bind sentence
  }
  render() {
    return <a onClick={this.say.bind(this)}>click</a>
  }
}

Now you can use this【本文首发于唐霜的博客】【未经授权禁止转载】 in say as want you 【版权所有,侵权必究】【原创内容,转载请注明出处】want.

【本文首发于唐霜的博客】本文作者:唐霜,转载请注明出处。【原创内容,转载请注明出处】著作权归作者所有,禁止商业用途转载。