2
我想將一些函數分解成一個名爲helpers.js
的文件,其中我已經放置了下面顯示的代碼。我應該怎麼做才能訪問我的方法中的app
變量,以便能夠獲取我的配置元素Path
?從node.js模塊訪問全局變量?
Helpers = {
fs: require('fs'),
loadFileAsString: function(file) {
return this.fs.readFileSync(app.set('Path') + file)+ '';
}
}
module.exports = Helpers;