0

一直在尝试根据 Matthew Eernise 的“构建您自己的 AJAX Web 应用程序”一书中的教程使用 JavaScript 创建一个基本的 Ajax 库(请参阅此处),因为我想更深入地了解 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 来生成代码,所以我得到了一个 OK。标头响应正常,但我还没有看到 AJAX 警报。然后我检查了控制台,发现了这个错误:

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

查看最新代码: http: //pastebin.com/g86k0z8dAjax.prototype我在我认为仍然需要它们的地方添加了更多内容。现在我得到:

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

更新 5

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

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

更新 6

我清理了我在req.onreadystatechange = function()函数中犯的一些错误,现在我运行了。我为 localhost 关闭了 Firefox 弹出窗口阻止程序,并在重新加载时打开了另一个选项卡并显示了文本undefined。所以差不多了。没有错误,只是没有弹出OK。undefinedChrome在正文中显示了一个弹出窗口。此处更新代码:http: //pastebin.com/g86k0z8d照常

4

2 回答 2

3

您为实例和类本身使用相同的名称。此外,您声明Ajax和使用ajaxJavascript 是区分大小写的。

于 2012-04-09T06:40:07.800 回答
1

首先,你有var Ajax = new Ajax();你应该有var ajax = new Ajax();

其次,this在构造函数之外使用并不是指 Ajax 对象。尝试改用它的原型:

function Ajax() {
    // Set properties here
}
Ajax.prototype.init = function() {
    // ...
}

有关更多信息,请参阅这篇关于 Javascript 类的文章。

于 2012-04-09T07:03:14.133 回答