Q 承诺的范围如何运作?据我所知,“then”的回调是由窗口调用的,比如 setTimeout。
在这个例子中(只是一个理解它是如何工作的例子):
var getFileText = function() {
var deferred = Q.defer();
Server.readFile("foo.txt", "utf-8", function (error, text) {
if (error) {
deferred.reject(new Error(error));
} else {
deferred.resolve(text);
}
});
return deferred.promise;
};
var Foo = function () {
getFileText().then(this.showFile);
};
Foo.prototype.showFile = function(text) {
this.text = text;
console.log(text);
};
var foo = new Foo();
要在 foo 的实例中包含文本,我正在使用绑定:
var Foo = function () {
getFileText().then(this.showFile.bind(this));
};
还有其他方法吗?