我在带有标志的Windows 上使用node v0.11.14-nightly-20140819-preharmony
。
我有 JavaScript 对象,它的原型中定义了两个方法:
function User (args) {
this.service= new Service(args);
}
User.prototype.method2 = function (response) {
console.log(this); // <= UNDEFINED!!!!
};
User.prototype.method1 = function () {
.............
this.service.serviceMethod(args)
.then(this.method2)
.catch(onRejected);
};
function onRejected(val) {
console.log(val);
}
serviceMethod
的Service
对象返回一个Promise。
当我使用User
如下对象时:
let user = new User(args);
user.method1();
this
一旦Promise完成,in method2
of object 就会在被调用时User
结束。 undefined
then
我尝试同时使用ES6和BluebirdPromise实现。
为什么this
最终会undefined
在这种情况下?