好的,所以我有一个使用express的节点应用程序。在这个应用程序中,我有一个像这样的快速路线:
var MyObj = require('./myObj')
, myObj = new MyObj();
app.post('/api/blah', auth.requiresLogin, myObj.method2);
现在在MyObj对象中我有以下内容:
var MyObj = function(name){
this.name = name;
this.message = 'hello';
};
MyObj.prototype = {
method1: function(req, res, done){
console.log('In Method 1');
done(null, this.message +' '+this.name);
},
method2: function(req, res){
var message;
console.log('In Method 2');
this.method1(req, res, function(err, value){
if(err) throw err;
message = value;
console.log(this.message);
});
return message;
}
};
module.exports = MyObj;
现在,如果我不需要这个对象,并在同一个文件中调用它,它就可以了。正如这个jsFiddle所示:http://jsfiddle.net/britztopher/qCZ2T/。但是,如果我需要它,用new构造它,并尝试从我要求的类myObj.method2(req, res);
中调用#<Object> has no method 'method1'
。不知道我在这里做错了什么,或者如果它表达了JS或者需要JS给我带来问题。此外,当我在方法2中查看this
时它是this = global
,所以有些东西正在失去这个'上下文。
答案 0 :(得分:1)
将myObj.method2
方法作为参数传递给app.post
时,您不知道它应该在哪个上下文/范围内执行。因此它将在全球范围内执行。解决方案应为myObj.method2.bind(myObj)
。