打字稿:从当前类的另一种方法调用方法

时间:2014-01-20 17:48:02

标签: javascript typescript

可以说,我有这个课程:

Class ExampleClass {  
    public firstMethod(){
     // Do something  
    }  
    public secondMethod(){
     //Do something with invoke firstMethod
    }
}

如何正确地从另一个方法调用第一个方法? (简单的“firstMethod()”不起作用。)

1 个答案:

答案 0 :(得分:18)

使用this

public secondMethod(){
   this.firstMethod();
}

如果要强制绑定到实例,请使用=>运营商:

secondMethod= () => {
   this.firstMethod();
}