[转]Ajax在Sun上的理论

[转]Ajax在Sun上的理论
http://developers.sun.com/prodtech/javatools/jscreator/reference/techart/2/ajax_overview.html

截取部份内容:

What is AJAX?
 
AJAX, which is growing rapidly in popularity, is a technique for creating improved web browser user interfaces for a web application. It is becoming so widely used that you probably have seen AJAX at web sites you have accessed, perhaps without even realizing it.  AJAX can help increase the speed and usability of an application's web pages by updating only part of the page at a time, rather than requiring the entire page to be reloaded after a user-initiated change.

Furthermore, AJAX uses capabilities already present in modern web browsers and does not require any plug-ins. To better understand AJAX, let's look at a simple example of  a web application that includes AJAX and then compare it with  HTML and DHTML.

AJAX and DHTML
A web application that uses DHTML can also offer an improved user experience over a simple HTML application.  With DHTML we could easily pop-up a list of choices that update dynamically as the user types in an input field.  Both AJAX and DHTML leverage the capabilities of JavaScript running in a web browser. 

What makes AJAX exciting  is that the web server can provide an updated list of choices each time the user types a key.  In a non-AJAX DHTML application you need to send the data for the list of choices when you first send the page and that data must work for all possible user inputs.  Clearly for many applications like Google Suggest it is virtually impossible to send all the data to support all possible user inputs.  Although in other cases, like a dictionary search, it might be theoretically possible to send all the data with the web page, the transmission time would be prohibitive. AJAX techniques allow JavaScript running in the browser to request and work with data from the server based on user inputs to the web page.

In summary, web application developers are also excited about AJAX is because it allows DHTML-like interactive web page techniques to be used with data requested from the server after user interactions with the page.

AJAX Technical Overview

There are many different tools and technologies for building web application including Java Studio Creator, PHP, J2EE, Ruby on Rails, DotNet, and others.  AJAX can be used by all these communities because an AJAX web application only requires a modern web browser.  AJAX is not tied to any specific tool, web application framework, or industry vendor.  For these reasons a broad range of communities have an active interest in using AJAX.  Let's now take a more technical look at AJAX.

First let's dive right in with a look at the steps to using AJAX in a web application. 

Figure 3 shows the processing steps taken over time, from the user, browser, and server perspectives, for a web application with AJAX. The steps are numbered according to their sequence in time, with time increasing from top to bottom in the table. 

Figure 3: UML Sequence Diagram for Web Application with AJAX Processing
Figure 3: UML Sequence Diagram for Web Application with AJAX Processing
 
These steps correspond to a scenario such as the one described for Google Suggest.  They show how processing moves in a defined sequence among the server, browser, and user.  Let's walk through these steps in the order they occur.
  1. Web server sends page with AJAX component

    When a  page includes AJAX then the AJAX-specific part is considered to be an AJAX component. An AJAX component corresponds to an HTML component, but it has enhanced AJAX processing in both the browser and the server.  For Google Suggest, an HTML input component is enhanced to become what may be generically described as an "Auto-Complete Text Field" AJAX component.

  2. Browser displays web page with AJAX component

    Although the display to the user at this point often is no different than the display for a non-AJAX component, JavaScript code for the page is waiting beneath the covers to play its part in the AJAX processing.

  3. User provides input to AJAX component in web browser

    For our Google Suggest example, the user types "aja".  Processing can happen as soon as the first letter is typed, or, as in the case of Google Suggest, quickly typed letters may be lumped together and sent as one request to the server to reduce server load.

  4. Browser runs JavaScript code to process user input

    In this step, JavaScript processes the user inputs in the same way as for a page leveraging DHTML.  These user inputs may result in JavaScript events.  For example, a user types some text into an input field and this may  invoke JavaScript events.  In a web application with AJAX, these JavaScript events may request data from the server (described in the next step). 

  5. Browser asynchronously requests data from server according to user input

    JavaScript code running in the browser makes a call to the server that is asynchronous from the normal HTTP request response processing for the page.  Typically the data request is based on the user's inputs.  For the Google Suggest example, the data request includes the string "aja" typed by the user.

  6. Server processes and responds to browser request for data

    The browser uses an HTTP or HTTPS URL to request data from the server. The server can implement an HTTP response by choosing from the many technologies and frameworks used in web applications. Typically the browser request includes parameters, such as "aja", and the server can use the request parameters to form a  response.  The server response data can be formatted in different ways, just like an HTTP response, and the server indicates the format by setting the "Content-Type" header.  XML is a convenient response format for processing in the browser. 

  7. Browser updates display using data received from server

    In the Google Suggest example, JavaScript code processes the response returned from the server and uses that data to display the list of suggestions shown in Figure 1.

  8. User selects from the suggestions

    In this scenario, the next step is that the user selects from the list displayed in step 7 or continues typing (as in step 3).

  9. Browser processes the user's selection and submits the page

    JavaScript processes the user's selection: It sets the text field to the selection, closes the display of suggestions, and then, if this is the last field on the form as it is in this simple scenario, submits the page via a standard HTTP request. If there are additional fields on the form, which is the typical case, JavaScript continues to process these fields. In fact, inputs into one component may very well cause side effects that change the presentation of other components on the same page, all without a complete page refresh.

  10. Server responds to HTTP request

    In the example, Google's server prepares a web page with search results based on the user's selection.

  11. Browser displays HTTP response

    The search results page displays in the user's web browser. This is the last step in the scenario.
Let's quickly summarize the AJAX processing. The magic of AJAX begins when JavaScript running in the browser asynchronously requests data from a web server based on the user's inputs.  The server's response is then used to dynamically update portions of the web page. All of this happens without submitting the page.

原文地址:https://www.cnblogs.com/WuCountry/p/406847.html