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

时间:2016-03-04 00:32:24

标签: javascript node.js oop ecmascript-6

我试图在我的班级中调用一个类方法,形成一个邻近的方法,如下例所示。

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

1 个答案:

答案 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()
  }
}