我试图在我的班级中调用一个类方法,形成一个邻近的方法,如下例所示。
import blah from './blaha';
export default class myclass{
constructor(con) {
this.config = con;
}
async meth1(paramA) {
//do_stuff...
}
meth2(paramB) {
//attempt to call meth1()
}
}
我想使用es6类样式从不同的方法中调用方法。
答案 0 :(得分:25)
使用this
import blah from './blaha';
export default class myclass{
constructor(con) {
this.config = con;
}
async meth1(paramA) {
//do_stuff...
}
meth2(paramB) {
this.meth1()
}
}