gpt4 book ai didi

在回调方法中使用 Javascript this Context

转载 作者:行者123 更新时间:2023-11-30 18:26:34 25 4
gpt4 key购买 nike

我是 Javascript 新手。这段代码大部分都有效,但发生了一些奇怪的事情。当我调用 .send()它触发异步请求并正常返回,但问题是 this调用 WebCall.prototype.__stateChangedCallback 时的上下文方法。在 Chrome 中 this是 XMLHttpRequest 对象,而我认为它将是 WebCall对象代替。谁能给我解释一下这是为什么?

function log (message) {
if(typeof console == "object") {
console.log(message);
}
}

function WebCall () {
var __callMethod;
this.__callMethod = this.createXmlHttpRequest();
}

WebCall.prototype.createXmlHttpRequest = function () {
if(window.XMLHttpRequest) {
return new XMLHttpRequest();
} else {
return new ActiveXObject("Microsoft.XMLHTTP");
}
}

WebCall.prototype.beginGet = function(url) {
this.__callMethod.open("GET", url, true);
this.__callMethod.onreadystatechange = this.__stateChangedCallback;
this.__callMethod.send();
}

WebCall.prototype.__stateChangedCallback = function(readyState, status) {
// this points to the XMLHttpRequest rather than the WebCall object WHY??!
var request = this.__callMethod;
if(request.readyState == 4) {
if (request.status == 200) {
this.onRequestCompleted(request);
} else {
this.onRequestFailed(status, request);
}
}
}

WebCall.prototype.onRequestCompleted = function (request) {

}

WebCall.prototype.onRequestFailed = function(status, request) {
log("Request failed status= " + status);
}

最佳答案

WebCall.prototype.__stateChangedCallback 中的只是对匿名函数的引用:

WebCall.prototype.__stateChangedCallback = function(readyState, status) {
//......................................^^^^ anonymous function
}

这一行:

this.__callMethod.onreadystatechange = this.__stateChangedCallback;

意味着,您有另一个对同一个匿名函数的引用。此匿名函数不是您的原型(prototype)对象的一部分。您只是在您的原型(prototype)对象中引用它。

解决方法是这样的:

var that = this;
this.__callMethod.onreadystatechange = function(readyState, status){
//Calling anonymous function with 'this' context
WebCall.prototype.__stateChangedCallback.apply( that, arguments );
}

关于在回调方法中使用 Javascript this Context,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10671103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com