Ajax is not a tehnology by itself but rather a combination of existing technologies (HTML/CSS/DOM/Javascript/XML/JSON).
What is it intended for ?
Ajax is typically used to refresh data on a web page without having to reload the entire page (e.g. asynchronously). It involves a web browser sending HTTP requests (GET/POST) to server and processing the response to finally manipulate the page DOM (e.g. HTML tags). The user's view is thereby dynamically updated.
As you can see, Ajax requests are executed by Javascript code and the response is also handled in Javascript. The orange part stands on client's side (the web browser).
What if the format of data ?
Originally, it was XML but nowadays, JSON is preferred (JavaScript Object Notation).
Example of ajax requests
jQuery
<script> ... $.ajax({ headers: { "X-CSRFToken": getCookie("csrftoken") }, url: "myurl", method: 'POST', // or another (GET), whatever you need data: { 'mydata': 'value', // outgoing data }, success: function (data) { // success callback // you can process data returned by server here } }); ... </script>
Pure javascript
<script type="text/javascript"> function ajaxFunction() { var xmlhttp; if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else if (window.ActiveXObject) { // code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } else { alert("Your browser does not support XMLHTTP!"); } xmlhttp.onreadystatechange=function() { if(xmlhttp.readyState==4) { document.myForm.time.value=xmlhttp.responseText; } } xmlhttp.open("GET","time.asp",true); xmlhttp.send(null); } </script>
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.