Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write an Ajax.Request class

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Editor to share with you how to write an Ajax.Request class, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

Purpose: because some modules in the blog program need to use ajax, directly use prototype.js is relatively large (more than 40 k), and only use the ajax function, so in order to reduce the burden of download, and can not change the code has been written in the prototype.js framework, can only be in accordance with the style of prototype, write their own ajax class, to achieve zero cost migration framework.

The new ajax class is as follows:

Var Ajax = {xmlhttp:function () {

Try {

Return new ActiveXObject ('Msxml2.XMLHTTP')

} catch (e) {

Try {

Return new ActiveXObject ('Microsoft.XMLHTTP')

} catch (e) {

Return new XMLHttpRequest ()

}

}

}

}

Ajax.Request = function () {

If (arguments.length0) _ p ["parameters"] + ='& _ ='

If (_ p ["method"] .toUpperCase () = = "GET") _ url + = (_ url.match (/\? /)?'&':'?) + _ p ["parameters"]

_ x.open (_ p ["method"], _ url,_p ["asynchronous"])

_ x.onreadystatechange = function () {

If (_ x.readyState==4) {

If (_ x.status==200) {

_ p ["onComplete"]? _ p ["onComplete"] (_ x): ""

} else {

_ p ["onError"]? _ p ["onError"] (_ x): ""

}

}

}

If (_ p ["method"] .toUpperCase () = = "POST") _ x.setRequestHeader ("Content-Type", "application/x-www-form-urlencoded")

_ x.send (_ p ["method"] .toUpperCase () = = "POST"? _ p ["parameters"]: null)

}

This class is saved as a js file with a volume of less than 1k, which is small enough. Ha ha.

Call method:

Var myAjax = new Ajax.Request (

"http://localhost/abc.asp",

{

Method: "post"

Parameters: "demo=123456789abc"

OnComplete:function (xmlhttp) {

Alert (xmlhttp.responseText)

}

}

);

The style of the call is exactly the same as before!

At present, there are only two callback functions in this new class: onComplete and onError,Ajax have only one method, Request. After all, blog programs do not need so many applications. The parameters attribute has a default value: {asynchronous:true,method: "GET", parameters: ""}, from which you can see that if asynchronous, method, and parameters are not passed in during the call, the class will use the default value.

These are all the contents of the article "how to write an Ajax.Request Class". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report