- 浏览: 284502 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
alan.hee:
不错
网站开发的流程 -
crabboy:
这是好东西啊
表格样式的应用——对程序员比较有用(二) -
linkaisheng:
IE6下有相应的解决方法的
position:fixed -
ph4nut:
what a good stuff!
可供选择CSS框架 -
ailiceromatic:
请问piwik的效率怎么样,如果pv是百万级的网站,速度会不 ...
piwik 不容小视的开源网页访问统计系统
by Jesse James Garrett
February 18, 2005
If anything about current interaction design can be called “glamorous,” it’s creating Web applications. After all, when was the last time you heard someone rave about the interaction design of a product that wasn’t on the Web? (Okay, besides the iPod.) All the cool, innovative new projects are online.
Despite this, Web interaction designers can’t help but feel a little envious of our colleagues who create desktop software. Desktop applications have a richness and responsiveness that has seemed out of reach on the Web. The same simplicity that enabled the Web’s rapid proliferation also creates a gap between the experiences we can provide and the experiences users can get from a desktop application.
That gap is closing. Take a look at Google Suggest . Watch the way the suggested terms update as you type, almost instantly. Now look at Google Maps . Zoom in. Use your cursor to grab the map and scroll around a bit. Again, everything happens almost instantly, with no waiting for pages to reload.
Google Suggest and Google Maps are two examples of a new approach to web applications that we at Adaptive Path have been calling Ajax. The name is shorthand for Asynchronous JavaScript + XML, and it represents a fundamental shift in what’s possible on the Web.
Defining Ajax
Ajax isn’t a technology. It’s really several technologies, each flourishing in its own right, coming together in powerful new ways. Ajax incorporates:
- standards-based presentation using XHTML and CSS;
- dynamic display and interaction using the Document Object Model ;
- data interchange and manipulation using XML and XSLT ;
- asynchronous data retrieval using XMLHttpRequest ;
- and JavaScript binding everything together.
The classic web application model works like this: Most user actions in the interface trigger an HTTP request back to a web server. The server does some processing — retrieving data, crunching numbers, talking to various legacy systems — and then returns an HTML page to the client. It’s a model adapted from the Web’s original use as a hypertext medium, but as fans of The Elements of User Experience know, what makes the Web good for hypertext doesn’t necessarily make it good for software applications.
Figure 1: The traditional model for web applications (left) compared to the Ajax model (right).
This approach makes a lot of technical sense, but it doesn’t make for a great user experience. While the server is doing its thing, what’s the user doing? That’s right, waiting. And at every step in a task, the user waits some more.
Obviously, if we were designing the Web from scratch for applications, we wouldn’t make users wait around. Once an interface is loaded, why should the user interaction come to a halt every time the application needs something from the server? In fact, why should the user see the application go to the server at all?
How Ajax is Different
An Ajax application eliminates the start-stop-start-stop nature of interaction on the Web by introducing an intermediary — an Ajax engine — between the user and the server. It seems like adding a layer to the application would make it less responsive, but the opposite is true.
Instead of loading a webpage, at the start of the session, the browser loads an Ajax engine — written in JavaScript and usually tucked away in a hidden frame. This engine is responsible for both rendering the interface the user sees and communicating with the server on the user’s behalf. The Ajax engine allows the user’s interaction with the application to happen asynchronously — independent of communication with the server. So the user is never staring at a blank browser window and an hourglass icon, waiting around for the server to do something.
Figure 2: The synchronous interaction pattern of a traditional web application (top) compared with the asynchronous pattern of an Ajax application (bottom).
Every user action that normally would generate an HTTP request takes the form of a JavaScript call to the Ajax engine instead. Any response to a user action that doesn’t require a trip back to the server — such as simple data validation, editing data in memory, and even some navigation — the engine handles on its own. If the engine needs something from the server in order to respond — if it’s submitting data for processing, loading additional interface code, or retrieving new data — the engine makes those requests asynchronously, usually using XML, without stalling a user’s interaction with the application.
Who’s Using Ajax
Google is making a huge investment in developing the Ajax approach. All of the major products Google has introduced over the last year — Orkut , Gmail , the latest beta version of Google Groups , Google Suggest , and Google Maps — are Ajax applications. (For more on the technical nuts and bolts of these Ajax implementations, check out these excellent analyses of Gmail , Google Suggest , and Google Maps .) Others are following suit: many of the features that people love in Flickr depend on Ajax, and Amazon’s A9.com search engine applies similar techniques.
These projects demonstrate that Ajax is not only technically sound, but also practical for real-world applications. This isn’t another technology that only works in a laboratory. And Ajax applications can be any size, from the very simple, single-function Google Suggest to the very complex and sophisticated Google Maps.
At Adaptive Path, we’ve been doing our own work with Ajax over the last several months, and we’re realizing we’ve only scratched the surface of the rich interaction and responsiveness that Ajax applications can provide. Ajax is an important development for Web applications, and its importance is only going to grow. And because there are so many developers out there who already know how to use these technologies, we expect to see many more organizations following Google’s lead in reaping the competitive advantage Ajax provides.
Moving Forward
The biggest challenges in creating Ajax applications are not technical. The core Ajax technologies are mature, stable, and well understood. Instead, the challenges are for the designers of these applications: to forget what we think we know about the limitations of the Web, and begin to imagine a wider, richer range of possibilities.
It’s going to be fun.
March 13, 2005: Since we first published Jesse’s essay, we’ve received an enormous amount of correspondence from readers with questions about Ajax. In this Q&A, Jesse responds to some of the most common queries.
Q. Did Adaptive Path invent Ajax? Did Google? Did Adaptive Path help build Google’s Ajax applications?
A. Neither Adaptive Path nor Google invented Ajax. Google’s recent products are simply the highest-profile examples of Ajax applications. Adaptive Path was not involved in the development of Google’s Ajax applications, but we have been doing Ajax work for some of our other clients.
Q. Is Adaptive Path selling Ajax components or trademarking the name? Where can I download it?
A. Ajax isn’t something you can download. It’s an approach — a way of thinking about the architecture of web applications using certain technologies. Neither the Ajax name nor the approach are proprietary to Adaptive Path.
Q. Is Ajax just another name for XMLHttpRequest?
A. No. XMLHttpRequest is only part of the Ajax equation. XMLHttpRequest is the technical component that makes the asynchronous server communication possible; Ajax is our name for the overall approach described in the article, which relies not only on XMLHttpRequest, but on CSS, DOM, and other technologies.
Q. Why did you feel the need to give this a name?
A. I needed something shorter than “Asynchronous JavaScript+CSS+DOM+XMLHttpRequest” to use when discussing this approach with clients.
Q. Techniques for asynchronous server communication have been around for years. What makes Ajax a “new” approach?
A. What’s new is the prominent use of these techniques in real-world applications to change the fundamental interaction model of the Web. Ajax is taking hold now because these technologies and the industry’s understanding of how to deploy them most effectively have taken time to develop.
Q. Is Ajax a technology platform or is it an architectural style?
A. It’s both. Ajax is a set of technologies being used together in a particular way.
Q. What kinds of applications is Ajax best suited for?
A. We don’t know yet. Because this is a relatively new approach, our understanding of where Ajax can best be applied is still in its infancy. Sometimes the traditional web application model is the most appropriate solution to a problem.
Q. Does this mean Adaptive Path is anti-Flash?
A. Not at all. Macromedia is an Adaptive Path client, and we’ve long been supporters of Flash technology. As Ajax matures, we expect that sometimes Ajax will be the better solution to a particular problem, and sometimes Flash will be the better solution. We’re also interested in exploring ways the technologies can be mixed (as in the case of Flickr, which uses both).
Q. Does Ajax have significant accessibility or browser compatibility limitations? Do Ajax applications break the back button? Is Ajax compatible with REST? Are there security considerations with Ajax development? Can Ajax applications be made to work for users who have JavaScript turned off?
A. The answer to all of these questions is “maybe”. Many developers are already working on ways to address these concerns. We think there’s more work to be done to determine all the limitations of Ajax, and we expect the Ajax development community to uncover more issues like these along the way.
Q. Some of the Google examples you cite don’t use XML at all. Do I have to use XML and/or XSLT in an Ajax application?
A. No. XML is the most fully-developed means of getting data in and out of an Ajax client, but there’s no reason you couldn’t accomplish the same effects using a technology like JavaScript Object Notation or any similar means of structuring data for interchange.
Q. Are Ajax applications easier to develop than traditional web applications?
A. Not necessarily. Ajax applications inevitably involve running complex JavaScript code on the client. Making that complex code efficient and bug-free is not a task to be taken lightly, and better development tools and frameworks will be needed to help us meet that challenge.
Q. Do Ajax applications always deliver a better experience than traditional web applications?
A. Not necessarily. Ajax gives interaction designers more flexibility. However, the more power we have, the more caution we must use in exercising it. We must be careful to use Ajax to enhance the user experience of our applications, not degrade it.
Jesse James Garrett is President and a founder of Adaptive Path. He is the author of the widely-referenced book The Elements of User Experience . Jesse’s other essays include The Nine Pillars of Successful Web Teams and Six Design Lessons From the Apple Store .
To get essays like this one delivered directly to your inbox, subscribe to our email newsletter . For more, check out our blog .
原文链接:http://www.adaptivepath.com/ideas/essays/archives/000385.php
发表评论
-
Price组件
2012-03-12 23:20 777<span class="price" ... -
HTML5 postMessage
2011-06-30 17:57 2992在HTML5中新增了postMessage方法,p ... -
使用html5和css3开发的3D版俄罗斯方块和机器猫
2010-10-17 22:32 21753D版俄罗斯方块: 这是一款新颖的俄罗斯方块,跟传统的俄 ... -
ie6 背景图片出不来
2009-11-25 21:01 3589在IE6 下,隐藏的浮层在重新显示后,部分区域背景图片显示不 ... -
通过ifame的方式来实现加载Google Doc
2009-06-22 14:52 1188通过iframe在自己网页中加载Google Doc非常简单, ... -
在网页中加载Google Map
2009-06-22 14:34 1987其实想要在自己的网页中加载Google Map很简单 ... -
Firefox特有css扩展样式列表
2009-05-13 16:23 2532Mozilla浏览器支持一些扩展的CSS是以-moz开头的。这 ... -
css hacks中的最小属性选择器
2009-05-13 12:16 1120<!DOCTYPE HTML PUBLIC " ... -
css hacks 中的 if注释
2009-05-13 11:35 877if条件是css hacks中经常会使用到一种hack, ... -
MIME类型导致css在Firefox下无效
2009-05-05 11:32 4279最近十分郁闷,原因是F ... -
图片阴影效果实现
2009-05-05 10:22 2084图片或边框的阴影效果在web app中经常会意见,以下是归纳的 ... -
在Web 中嵌入图表
2009-05-05 10:00 1773可以通过使用 JavaScript 库,CSS,Flash,S ... -
可供选择CSS框架
2009-05-05 09:50 1230在这里你有一个很酷的框架,收集创建的CSS布局。 如果你不 ... -
XHTML 简史及XHTML V2 背后的设计理念
2009-04-13 17:32 851XHTML 简史 理解 XHTML V2 背后隐藏的设计理念 ... -
HTML 5 新增元素
2009-04-13 17:07 1204万维网联盟(W3C)把重点转向将 HTML 的底层语法从标准通 ... -
符合web标准的flash调用方法,解决了浏览器对flash的影响
2009-03-10 14:32 1144SWFObject是一个用于在HTML中方面插入Adobe F ... -
表格样式的应用——对程序员比较有用(三)
2009-03-03 13:56 1455基于表格样式的应用的扩展,有时我们也可以通过 unorder ... -
表格样式的应用——对程序员比较有用(二)
2009-03-03 11:51 1842前一篇文章主要列出了table所有的HTML Tag和CSS ... -
表格样式的应用——对程序员比较有用(一)
2009-03-03 11:25 1775table 所有的HTML Tag <table&g ... -
wmode属性介绍
2008-12-11 14:34 2156wmode 属性 参数值有 Window | Opaqu ...
相关推荐
A New Approach to Web Applications with Ajax.pdf
英文参见Ajax的提出者Jesse James Garrett的原文,原文题目(Ajax: A New Approach to Web Applications)。 类似于DHTML或LAMP,AJAX不是指一种单一的技术,而是有机地利用了一系列相关的技术。事实上,一些基于AJAX的...
英文参见Ajax的提出者Jesse James Garrett的原文,原文题目(Ajax: A New Approach to Web Applications)。 类似于DHTML或LAMP,AJAX不是指一种单一的技术,而是有机地利用了一系列相关的技术。事实上,一些基于AJAX...
Ajax一词源于2005年 Jesse James Garrett发表的一篇题为”Ajax:A new Approach to Web Applications”.他在这篇文 章中介绍了一种新技术,用他的话说,就是Ajax :Asynchronous JavaScript +XML的缩写。 Ajax是...
"Ajax: A New Approach to Web Applications"这篇文章的发布和Mozilla/Gecko浏览器的普及进一步推动了AJAX的采用。 ### VS2005安装AJAX步骤 1. **安装AJAX扩展**:首先,你需要访问<http://...
详情请移步Ajax: A New Approach to Web Applications 【原理】 简单一些,就是通过使用XmlHttpRequest对象向服务器发送异步请求,获取返回的数据,并使用Javascript和DOM操作页面内的元素,从而达到改变页面内容的...
- [Jesse James Garrett, “Ajax: A New Approach to Web Applications,” Adaptive Path, 2005](https://www.adaptivepath.org/ideas/ajax-a-new-approach-to-web-applications/) - [Google Maps API]...
Ajax: A New Approach to Web Applications - **网址**:http://www.adaptivepath.com/publarchives/000385.php - **简介**:这篇文章是Ajax概念最早被提出的地方之一,对于理解Ajax的历史背景和发展历程有重要...
In conclusion, the paper "Modelling and Generating AJAX Applications: A Model-Driven Approach" highlights the need for a new modeling methodology tailored to AJAX applications. By adopting MDA ...
于是我就发现了促使AJAX诞生的那篇文章《a New Approach toWeb Applications》,在这篇文章里,AJAX 是一个比较莫名的缩写单词:Asynchronous JavaScript + XML。什么叫做异步的JavaScript加上XML呀。在初步的浏览...
Single page web applications are your next step: pushing UI rendering and business logic to the browser and communicating with the server only to synchronize data, they provide a smooth user ...
AJAX的概念最早由AdaptivePath公司的Jesse James Garrett在2005年的文章“Ajaxis:A New Approach to Web Applications”中提出。Garrett在这篇文章中描述了一种利用JavaScript、XHTML、CSS、DOM、XMLHttpRequest、...
<br>What you will learn from this book <br>How to create a better user experience by adding more dynamic UIs Steps for accessing ASP.NET profile and authentication services Ways to ...
The result is a new approach to managing information that touches everything from configuration files to web sites. After two chapters on XML basics, including XPath, XSL, DTDs, and XML Schema, the ...