Jump to content

Ajax (programming): Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Tag: section blanking
m Reverted edits by 202.5.140.189 (talk) unexplained removal of content (HG)
Line 19: Line 19:


==History==
==History==
In the 1990s, most web sites were based on complete HTML pages; each user action required that the page be re-loaded from the server (or a new page loaded). This process is inefficient, as reflected by the user experience: all page content disappears then reappears, etc. Each time a page is reloaded due to a partial change, all of the content must be re-sent instead of only the changed information. This can place additional load on the server and use excessive [[bandwidth (computing)|bandwidth]].

Asynchronous loading of content first became practical when [[Java applet]]s were introduced in the first version of the Java language in 1995. These allow [[compiler|compiled]] client-side code to load data asynchronously from the web server after a web page is loaded.<ref name="applets">{{cite web | url = http://java.sun.com/applets/ | title = Code Samples and Apps: Applets | publisher = Sun Microsystems, Inc. | accessdate =2 January 2009 }}</ref> In 1996, [[Internet Explorer]] introduced the [[iframe]] element to [[HTML]], which also enabled asynchronous loading.<ref name="history">{{ Cite book | last = Hinchcliffe | first = Dion | title = Real-World Ajax: Secrets of the Masters | url = http://ajaxdevelopersjournal.com/read/338113.htm | publisher = SYS-CON Media | month = June | year = 2006 | isbn = 978-0-9777622-0-0 }}</ref> In 1999, Microsoft utilized its iframe technology to dynamically update the news stories and stock quotes on the default page for Internet Explorer (http://home.microsoft.com). In 1999, Microsoft created the XMLHTTP [[ActiveX]] control in [[Internet Explorer 5]], which was later adopted by [[Mozilla]], [[Safari (web browser)|Safari]], [[Opera (web browser)|Opera]] and other browsers as the XMLHttpRequest [[JavaScript]] object.<ref name=history/><ref name="apple">{{cite web | url = http://developer.apple.com/internet/webcontent/xmlhttpreq.html | title = Dynamic HTML and XML: The XMLHttpRequest Object | publisher = Apple Inc | accessdate =25 June 2008 }}</ref> Microsoft has adopted the native XMLHttpRequest model as of [[Internet Explorer 7]], though the ActiveX version is still supported. The utility of background HTTP requests to the server and asynchronous web technologies remained fairly obscure until it started appearing in full scale online applications such as [[Outlook Web Access]] (2000)<ref>{{cite web|last=Hopmann|first=Alex|title=Story of XMLHTTP|url=http://www.alexhopmann.com/story-of-xmlhttp/|work=Alex Hopmann’s Blog|accessdate=17 May 2010}}</ref> and [[Oddpost]] (2002), and later, [[Google]] made a wide deployment of Ajax with [[Gmail]] (2004) and [[Google Maps]] (2005).<ref name="xhr-standard">{{cite web | url = http://www.aaronsw.com/weblog/ajaxhistory | title = A Brief History of Ajax | publisher = Aaron Swartz | date = 22 December 2005 | accessdate =4 August 2009 }}</ref>

The term ''Ajax'' was coined on 18 February 2005 by [[Jesse James Garrett]] in an article entitled "Ajax: A New Approach to Web Applications", based on techniques used on Google web pages.<ref name="garrett">{{cite web | url = http://www.adaptivepath.com/ideas/essays/archives/000385.php | title = Ajax: A New Approach to Web Applications | publisher = AdaptivePath.com | author = Jesse James Garrett | date = 18 February 2005 | accessdate =19 June 2008 }}</ref>

On 5 April 2006 the [[World Wide Web Consortium]] (W3C) released the first draft specification for the XMLHttpRequest object in an attempt to create an official [[web standard]].<ref name="xhr-standard">{{cite web | url = http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/ | title = The XMLHttpRequest Object | publisher = World Wide Web Consortium | date = 5 April 2006 | accessdate =25 June 2008 }}</ref>


==Technologies==
==Technologies==

Revision as of 10:08, 3 May 2012

Ajax (also AJAX; pronounced /ˈeɪdʒæks/; an acronym for Asynchronous JavaScript and XML)[1] is a group of interrelated web development techniques used on the client-side to create asynchronous web applications. With Ajax, web applications can send data to, and retrieve data from, a server asynchronously (in the background) without interfering with the display and behavior of the existing page. Data is usually retrieved using the XMLHttpRequest object. Despite the name, the use of XML is not needed (JSON is often used instead), and the requests do not need to be asynchronous.[2]

Ajax is not a single technology, but a group of technologies. HTML and CSS can be used in combination to mark up and style information. The DOM is accessed with JavaScript to dynamically display, and to allow the user to interact with the information presented. JavaScript and the XMLHttpRequest object provide a method for exchanging data asynchronously between browser and server to avoid full page reloads.

History

In the 1990s, most web sites were based on complete HTML pages; each user action required that the page be re-loaded from the server (or a new page loaded). This process is inefficient, as reflected by the user experience: all page content disappears then reappears, etc. Each time a page is reloaded due to a partial change, all of the content must be re-sent instead of only the changed information. This can place additional load on the server and use excessive bandwidth.

Asynchronous loading of content first became practical when Java applets were introduced in the first version of the Java language in 1995. These allow compiled client-side code to load data asynchronously from the web server after a web page is loaded.[3] In 1996, Internet Explorer introduced the iframe element to HTML, which also enabled asynchronous loading.[4] In 1999, Microsoft utilized its iframe technology to dynamically update the news stories and stock quotes on the default page for Internet Explorer (http://home.microsoft.com). In 1999, Microsoft created the XMLHTTP ActiveX control in Internet Explorer 5, which was later adopted by Mozilla, Safari, Opera and other browsers as the XMLHttpRequest JavaScript object.[4][5] Microsoft has adopted the native XMLHttpRequest model as of Internet Explorer 7, though the ActiveX version is still supported. The utility of background HTTP requests to the server and asynchronous web technologies remained fairly obscure until it started appearing in full scale online applications such as Outlook Web Access (2000)[6] and Oddpost (2002), and later, Google made a wide deployment of Ajax with Gmail (2004) and Google Maps (2005).[7]

The term Ajax was coined on 18 February 2005 by Jesse James Garrett in an article entitled "Ajax: A New Approach to Web Applications", based on techniques used on Google web pages.[1]

On 5 April 2006 the World Wide Web Consortium (W3C) released the first draft specification for the XMLHttpRequest object in an attempt to create an official web standard.[7]

Technologies

The term Ajax has come to represent a broad group of web technologies that can be used to implement a web application that communicates with a server in the background, without interfering with the current state of the page. In the article that coined the term Ajax,[1] Jesse James Garrett explained that the following technologies are incorporated:

Since then, however, there have been a number of developments in the technologies used in an Ajax application, and the definition of the term Ajax. XML is not required for data interchange and therefore XSLT is not required for the manipulation of data. JavaScript Object Notation (JSON) is often used as an alternative format for data interchange,[8] although other formats such as preformatted HTML or plain text can also be used.[9]

Drawbacks

  • In pre-HTML5 browsers, pages dynamically created using successive Ajax requests did not automatically register themselves with the browser's history engine, so clicking the browser's "back" button may not have returned the browser to an earlier state of the Ajax-enabled page, but may have instead returned to the last full page visited before it. A pre-Ajax workaround was to use invisible iframes to trigger changes in the browser's history. A workaround implemented by Ajax techniques is to change the URL fragment identifier (the part of a URL after the '#') when an Ajax-enabled page is accessed and monitor it for changes.[10][11]
    • However, HTML5 provides an extensive API standard for working with the browser's history engine.[12]
  • Dynamic web page updates also make it difficult to bookmark and return to a particular state of the application. Solutions to this problem exist, many of which again use the URL fragment identifier.[10][11]
    • The solution provided by HTML5 for the above problem also applies for this.[12]
  • Depending on the nature of the Ajax application, dynamic page updates may interfere disruptively with user interactions, especially if working on an unstable Internet connection. For instance, editing a search field may trigger a query to the server for search completions, but the user may not know that a search completion popup is forthcoming, and if the internet connection is slow, the popup list may show up at an inconvenient time, when the user has already proceeded to do something else.
  • Because most web crawlers do not execute JavaScript code,[13] publicly indexable web applications should provide an alternative means of accessing the content that would normally be retrieved with Ajax, thereby allowing search engines to index it.
  • Any user whose browser does not support JavaScript or XMLHttpRequest, or simply has this functionality disabled, will not be able to properly use pages which depend on Ajax. Devices such as smartphones and PDAs may not have support for the required technologies, though this is becoming less of an issue. The only way to let the user carry out functionality is to fall back to non-JavaScript methods. This can be achieved by making sure links and forms can be resolved properly and not relying solely on Ajax.[14]
  • Similarly, some web applications which use Ajax are built in a way that cannot be read by screen-reading technologies, such as JAWS. The WAI-ARIA standards provide a way to provide hints in such a case.[15]
  • Screen readers that are able to use Ajax may still not be able to properly read the dynamically generated content.[16]
  • The same origin policy prevents some Ajax techniques from being used across domains,[7] although the W3C has a draft of the XMLHttpRequest object that would enable this functionality.[17] Methods exist to sidestep this security feature by using a special Cross Domain Communications channel embedded as an iframe within a page,[18] or by the use of JSONP.
  • Ajax-powered interfaces may dramatically increase the number of user-generated requests to web servers and their back-ends (e.g. databases).[citation needed] This can lead to longer response times and/or additional hardware needs.
  • Ajax-heavy interfaces impose a heavy processing load on the browser, which has to execute large, complex scripts and frequently re-render complex pages. This may result in slow, jerky, unresponsive web pages, and also significantly reduces the CPU time available to other applications running on the same system, so that leaving an Ajax-heavy web page open in the browser while working in some other application may cause that application to also be slow and unresponsive.
Well-known websites that induce such behavior include Facebook and Twitter, both of which use Ajax techniques.
The problem is exacerbated by the common failure of developers to provide fallback methods, so it is usually not possible to avoid the slowness by disabling JavaScript. In the case of the two examples mentioned, disabling JavaScript simply causes the site to display as a blank page and renders it completely unusable.
The additional processing load also increases power consumption, which is particularly undesirable on mobile devices because it reduces battery life.
  • The asynchronous callback-style of programming required can lead to complex code that is hard to maintain, to debug[19] and to test.[20]

See also

References

  1. ^ a b c Jesse James Garrett (18 February 2005). "Ajax: A New Approach to Web Applications". AdaptivePath.com. Retrieved 19 June 2008.
  2. ^ Ullman, Chris (2007). Beginning Ajax. wrox. ISBN 978-0-470-10675-4. Retrieved 24 June 2008. {{cite book}}: Unknown parameter |month= ignored (help)
  3. ^ "Code Samples and Apps: Applets". Sun Microsystems, Inc. Retrieved 2 January 2009.
  4. ^ a b Hinchcliffe, Dion (2006). Real-World Ajax: Secrets of the Masters. SYS-CON Media. ISBN 978-0-9777622-0-0. {{cite book}}: Unknown parameter |month= ignored (help)
  5. ^ "Dynamic HTML and XML: The XMLHttpRequest Object". Apple Inc. Retrieved 25 June 2008.
  6. ^ Hopmann, Alex. "Story of XMLHTTP". Alex Hopmann’s Blog. Retrieved 17 May 2010.
  7. ^ a b c "A Brief History of Ajax". Aaron Swartz. 22 December 2005. Retrieved 4 August 2009. Cite error: The named reference "xhr-standard" was defined multiple times with different content (see the help page).
  8. ^ "JavaScript Object Notation". Apache.org. Retrieved 4 July 2008.
  9. ^ "Speed Up Your Ajax-based Apps with JSON". DevX.com. Retrieved 4 July 2008.
  10. ^ a b "Why use Ajax?". InterAKT. 10 November 2005. Retrieved 26 June 2008.
  11. ^ a b "Deep Linking for AJAX".
  12. ^ a b "HTML5 specification". Retrieved 21 October 2011.
  13. ^ Prokoph, Andreas (8 May 2007). "Help Web crawlers efficiently crawl your portal sites and Web sites". IBM. Retrieved 22 April 2009.
  14. ^ Quinsey, Peter. "User-proofing Ajax".
  15. ^ "WAI-ARIA Overview". http://www.w3.org/. Retrieved 21 October 2010. {{cite web}}: External link in |publisher= (help)
  16. ^ Edwards, James (5 May 2006). "Ajax and Screenreaders: When Can it Work?". sitepoint.com. Retrieved 27 June 2008.
  17. ^ "Access Control for Cross-Site Requests". World Wide Web Consortium. Retrieved 27 June 2008.
  18. ^ "Secure Cross-Domain Communication in the Browser". The Architecture Journal (MSDN). Retrieved 27 April 2010.
  19. ^ Cuthbertson, Tim. "What is asynchronous programming, and why is it so damn awkward?". http://gfxmonk.net/. Retrieved 19 October 2010. {{cite web}}: External link in |publisher= (help)
  20. ^ "Selenium documentation: Fetching a Page". http://seleniumhq.org/. Retrieved 6 October 2011. It's worth noting that if your page uses a lot of AJAX on load then WebDriver may not know when it has completely loaded. If you need to ensure such pages are fully loaded, then you can use an Explicit and Implicit Waits. {{cite web}}: External link in |publisher= (help)

Template:Link GA