gpt4 book ai didi

javascript - es6 从同一个类中调用类方法

转载 作者:IT老高 更新时间:2023-10-28 22:03:05 28 4
gpt4 key购买 nike

我正在尝试将我的类中的类方法调用为相邻方法,如下例所示。

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 类样式从不同的方法中调用一个方法。

最佳答案

使用这个

import blah from './blaha';

export default class myclass{
constructor(con) {
this.config = con;
}

async meth1(paramA) {
//do_stuff...
}

meth2(paramB) {
this.meth1()
}
}

关于javascript - es6 从同一个类中调用类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35785860/

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