当前位置:  开发笔记 > 编程语言 > 正文

有没有办法在React Component类中绑定'this'?

如何解决《有没有办法在ReactComponent类中绑定'this'?》经验,为你挑选了1个好方法。

我正在研究一个反应应用程序,this当组件类有很多功能时,我发现必须绑定一些麻烦.

class Foo extends Component {
  constructor(props){
    super(props);
    this.function1 = this.function1.bind(this);
    this.function2 = this.function2.bind(this);
    this.function3 = this.function3.bind(this);
  }
  function1() {
    ...
  }
  function2() {
    ...
  }
  function3() {
    ...
  }
}

有没有更有效的方法来做到这一点?



1> 小智..:

您可以避免使用transform-class-properties Babel插件来绑定方法,这是一个实验性的ES7功能.确保启用stage-0才能使用它.

这允许在定义类方法时使用箭头函数,利用箭头函数的词法绑定,因此this引用函数的上下文(在本例中为类),如下所示:

class Foo extends Component {
    boundFunction = () => { /* 'this' points to Foo */ }
}

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有