我是 node.js 的新手。我必须运行一个现有的应用程序。当我运行应用程序时,我得到以下代码的未定义变量。有什么问题?
var i18n = require("i18n");
module.exports = function(app, express){
var config = this; // "this" is undefined, so I get config undefined which is causing problem ahead.
app.configure(function(){
...
...
});
.....
.....
return config;
};