gpt4 book ai didi

javascript - 基本 Ajax 库中的错误

转载 作者:行者123 更新时间:2023-11-28 16:19:52 25 4
gpt4 key购买 nike

一直尝试根据 Matthew Eernise 所著的“构建您自己的 AJAX Web 应用程序”一书中的教程,使用 JavaScript 创建一个基本的 Ajax 库(请参阅 here ),因为我想获得有关 AJAX XML 的更深入的知识-RPC 和 REST。根据这本书,我创建了一个 JavaScript 构造函数来运行 AJAX 或 XMLHttpRequest,但不知何故,我似乎遇到了超出范围的问题,并且以下脚本中未定义 Ajax 类:

function Ajax() {
// properties
this.req = null;
this.url = null;
this.method = 'GET';
this.asynch = true;
this.status = null;
this.statusText = '';
this.postData = null;
this.readyState = null;
this.responseText = null;
this.responseXML = null;
this.handleResp = null;
this.responseFormat = 'text',
// 'text', 'html', 'xml' or 'object'
this.mimeType = null;

} // End Constructor

//Create XMLHttpRequest method with XMLHttpRequest object
this.init = function() {
if (!this.req) {
try {
//Try to create objects for Firefox, Safari, IE7, etc.
this.req = newXMLHttpRequest();
}

catch(e) {
try {
//Try to create object for later versions of IE.
this.req = new ActiveXObject('MSXML2.XMLHTTP');
}

catch(e) {
try {
//Try to create for early versions of IE.
this.req = new ActiveXObject('Microsoft.XMLHTTP');
}

catch(e) {
//Could not create XMLHttpRequest object.
return false;
}
}
}
}
return this.req;
};


//Sending a Request method
this.doReq = function() {
if (!this.init()) {
alert('Could not create XMLHttpRequest object.');
return;
}
//Setting up a request
//open methods with method, url and asycn yes or no
this.req.open(this.method, this.url, this.asynch);
//Make sure mimetype is OK
if (this.mimeType) {
try {
req.overrideMimeType(this.mimeType);
}
catch(e) {
//couldn't override MIME type ... IE6 or Opera?
}
}

var self = this; // fix loss-of-scope in inner function
this.req.onreadystatechange = function() {
var resp = null;
if (self.req.readyState == 4) {
//do stuff to handle response
switch (self.reponseFormat) {
case 'text':
resp = self.req.responseText;
break;
case 'xml':
resp = self.req.responseXML;
break;
case 'object':
resp = req;
break;
}
if (self.req.status >= 200 && self.req.status <= 299) {
self.handleResp(resp);
}
else {
self.handleErr(resp);
}
}

};
this.req.send(this.postData);
};

this.handleErr = function() {
var errorWin;
try {
errorWin = window.open('', 'errorWin');
errorWin.document.body.innerHTML = this.responseText;
}
catch(e) {
alert('An error occured, but this error message cannot be '
+ 'displayed. This is probably because of your browser\'s '
+ 'pop-up blocker. \n'
+ 'Please allow pop-ups from this website if you want to '
+ 'see the full error messages. \n'
+ '\n'
+ 'Status Code: ' + this.req.status + '\n'
+ 'Status description: ' + this.req.statusText);
}
};

this.abort = function() {
if (this.req) {
this.req.onreadystatechange = function() {};
this.req.abort();
this.req = null;
}
};

this.doGet = function (url, hand, format) {
this.url = url;
this.handleResp = hand;
this.responseFormat = format || 'text' ;
this.doReq();
};

我在加载此脚本的页面上遇到的错误

var hand = function (str) {
alert(str);
}
var Ajax = new Ajax(); // new instance as can ben done with PHP5 constructor classes
ajax.doGet ('/fakeserverpage.php', hand);

并启动一个新的 Ajax 实例,收到错误 ajax is not defined即使我确实添加了 var self = this; // fix loss-of-scope in inner function
解决范围问题。我错过了什么?

更新1

感谢此处的提示,为新实例指定了不同的名称,这样它们就不会发生冲突:

var hand = function (str) {
alert(str);
}
var ajax = new Ajax(); // new instance as can ben done with PHP5 constructor classes
ajax.doGet ('/fakeserverpage.php', hand);

现在我有点远了。现在我收到一个新错误:Uncaught TypeError: Object #<Ajax> has no method 'doGet'

更新2

我尝试使用Ajax.prototype.init而不是this.init正如这里的联合开发人员所推荐的,但我仍然有同样的错误..

更新3感谢@Soufiana Hassou,我通过添加 Ajax.prototype 改进了代码到所有方法。不知道所有人都有必要使用构造函数,但确实如此。代码在这里http://pastebin.com/g86k0z8d 。我现在看到这个弹出窗口显示 Could not create XMLHttpRequest object.此错误消息内置于该方法中,因此它可以工作,但无法以某种方式创建该对象。这意味着我的 XMLHttpRequest 请求中一定存在错误,因为我涵盖了所有情况,并使用本地 MacPorts MAMP 上的代码在 Firefox 11 for Mac 中对此进行了测试。要么是这样,要么还有其他我不知道的事情..

更新4

修正了一个错字。然后我在加载假服务器页面时遇到了 404 错误。更正路径ajax.doGet ('/ajax/fakeserverpage.php', hand);所以现在好了。只需要让 PHP 生成代码,这样我就可以了。 header 响应正常,但我还没有看到 AJAX 警报。然后我检查控制台,发现这个错误:

self.req is undefined
http://localhost/ajax/ajax.js
Line 78

查看最新代码:http://pastebin.com/g86k0z8d 。我又添加了一些Ajax.prototype我认为仍然需要它们的地方。现在我得到:

this.req is null
http://localhost/ajax/ajax.js
Line 100

更新5

使用 var self = this 进行了更多更改,删除了最初用于超出范围问题的一些 self 。代码仍然是相同的pastebin,但我已经更新了。现在我有:

Ajax.prototype.handleResp is not a function
http://localhost/ajax/ajax.js
Line 92

更新6

我纠正了我在req.onreadystatechange = function()中犯的一些错误。函数,现在我确实运行了。我关闭了 localhost 的 Firefox 弹出窗口阻止程序,并在重新加载时打开了另一个选项卡并显示文本 undefined 。差不多就到了。没有错误,只是没有弹出“确定”窗口。 Chrome 显示了一个弹出窗口,其中包含 undefined在 body 里。此处更新了代码:http://pastebin.com/g86k0z8d和往常一样

最佳答案

您的实例和类本身使用相同的名称。另外,您声明 Ajax 并使用 ajax,Javascript 区分大小写。

关于javascript - 基本 Ajax 库中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10069819/

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