基本Ajax库中的错误

时间:2012-04-09 06:37:38

标签: javascript ajax scope

根据Matthew Eernise撰写的“构建您自己的AJAX Web应用程序”一书中的教程(请参阅here)尝试使用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生成代码,所以我得到了一个好的。标题响应没问题,但我还没有看到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删除了一些最初用于超出范围的问题的自我更改。代码仍然是相同的pastebin,但我已经更新了它。现在我有:

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

更新6

我清理了我在req.onreadystatechange = function()函数中犯的一些错误,现在我确实运行了。我为localhost启用了Firefox弹出窗口阻止程序,并在重新加载时打开另一个选项卡并显示文本undefined。几乎就在那里。没有错误,只是没有弹出OK。 Chrome在正文中显示了undefined的弹出式窗口。这里更新了代码:http://pastebin.com/g86k0z8d像往常一样

2 个答案:

答案 0 :(得分:3)

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

答案 1 :(得分:1)

首先,您有var Ajax = new Ajax();您应该var ajax = new Ajax();代替。

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

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

有关详细信息,请参阅this article on Javascript classes