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
请帮助获得结果
答案 0 :(得分:3)
试试这个
var a = function () {
var b = function () {
console.log("hello")
}
return {b:b};
}