我很好奇如何访问module.exports中的另一个对象属性。
就是这样:
module.exports = {
text: 'abcd',
index: (req, res)=>{
console.log(text) <-- is not defined
console.log(this.text) <-- undefined
}
}
那么,如何访问文本属性?谢谢你们需要你的解释。
答案 0 :(得分:0)
试试这个
module.exports = {
text: 'abcd',
index: function (req,res) {
console.log(this.text)
}
}
通过
访问var te=require('modulename')
te.index()