Class ExampleClass { public firstMethod(){ // Do something } public secondMethod(){ //Do something with invoke firstMethod } }
如何正确地从另一个方法调用第一个方法? (简单的“firstMethod()”不起作用).
this
public secondMethod(){ this.firstMethod(); }
如果要强制绑定到实例,请使用=>操作符:
secondMethod= () => { this.firstMethod(); }