node.js模块中的未定义错误

时间:2013-10-12 02:13:38

标签: node.js

我是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;

};

0 个答案:

没有答案