类型错误无法读取属性Javascript函数

时间:2015-07-15 15:07:40

标签: javascript node.js mocha

我的功能如下:

function instance(options) {
   this.createInstance = Bluebird.method(function() {
               this.getInstance();
    });

   this.getInstance = Bluebird.method(function () {
   });
}
module.exports = instance

Bluebird是承诺的npm库

在使用mocha的测试文件中,我导入此实例文件并按var Instance = new instance(options);创建对象 我打电话给Instance.createInstance 但是我收到错误TypeError: Cannot read property 'getInstance' of null

0 个答案:

没有答案