gpt4 book ai didi

javascript - typescript :从当前类的另一个方法调用方法

转载 作者:数据小太阳 更新时间:2023-10-29 04:03:06 24 4
gpt4 key购买 nike

据推测,我有这个类:

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

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

最佳答案

使用this :

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

如果要强制绑定(bind)到实例,请使用 => 运算符:

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

关于javascript - typescript :从当前类的另一个方法调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21240775/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com