导出函数内的函数

时间:2018-03-02 05:31:03

标签: node.js node-modules

app.js

var a = function(){
      var b = function(){
          console.log("hello")
      }
}

module.exports = {a}

index.js

console.log(require("./app.js").a().b())

我想获得输出"你好"但我收到错误can call property b of undefined 请帮助获得结果

1 个答案:

答案 0 :(得分:3)

试试这个

var a = function () {
    var b = function () {
        console.log("hello")
    }
    return {b:b};
}