AJAX
시작하기 AJAX를 소개합니다.
Asynchronous JavaScript + XML(AJAX)은 그 자체가 특정 기술은 아닙니다. 2005년 Jesse James Garrett이 처음 만들어낸 말로, HTML 또는 XHTML, CSS, JavaScript, DOM, XML, XSLT, 그리고 제일 중요한 XMLHttpRequest 객체를 비롯해 기존의 여러 기술을 사용하는 "새로운" 접근법을 설명하는 용어입니다. 이렇게 다양한 기술을 AJAX 모델로서 결합했을 때, 웹 어플리케이션은 전체 페이지를 새로 고칠 필요 없이 사용자 인터페이스에 빠르고 점진적인 업데이트를 적용할 수 있습니다. 덕분에 어플리케이션은 보다 빨라지고, 사용자 행동에 대한 반응성도 좋아집니다.
AJAX의 X가 XML을 의미하긴 하지만, 요즘은 더 가벼운 용량과 JavaScript의 일부라는 장점 때문에 JSON을 더 많이 사용합니다. JSON과 XML 양쪽 모두 AJAX 모델에서 정보를 담을 때 사용합니다.
문서
- 시작하기
-
AJAX 기초를 다룬 후에 간단한 연습 예제 두 개를 제공합니다.
- XMLHttpRequest API 사용하기 (en-US)
-
XMLHttpRequest
API는 Ajax의 핵심입니다. 이 글은 몇 가지 AJAX 기술을 사용하는 법을 설명합니다.* analyzing and manipulating the response of the server (en-US)- monitoring the progress of a request (en-US)
- submitting forms and upload binary files (en-US) – in pure Ajax, or using
FormData
objects - creating synchronous or asynchronous requests (en-US)
- using Ajax within Web workers
- Fetch API
-
The Fetch API provides an interface for fetching resources. It will seem familiar to anyone who has used
XMLHTTPRequest
, but this API provides a more powerful and flexible feature set. - 서버발 이벤트
-
Traditionally, a web page has to send a request to the server to receive new data; that is, the page requests data from the server. With server-sent events, it's possible for a server to send new data to a web page at any time, by pushing messages to the web page. These incoming messages can be treated as Events + data inside the web page. See also: Using server-sent events.
- 이진 데이터 주고받기 (en-US)
-
The
responseType
property of theXMLHttpRequest
object can be set to change the expected response type from the server. Possible values are the empty string (default),arraybuffer
,blob
,document
,json
, andtext
. Theresponse
property will contain the entity body according toresponseType
, as anArrayBuffer
,Blob
,Document
,JSON
, or string. This article will show some Ajax I/O techniques. - XML
-
The Extensible Markup Language (XML) is a W3C-recommended general-purpose markup language for creating special-purpose markup languages. It is a simplified subset of SGML, capable of describing many different kinds of data. Its primary purpose is to facilitate the sharing of data across different systems, particularly systems connected via the Internet.
- XML 분석 및 직렬화 (en-US)
-
How to parse an XML document from a string, a file or via javascript and how to serialize XML documents to strings, Javascript Object trees (JXON) or files.
- XPath
-
XPath stands for XML Path Language, it uses a non-XML syntax that provides a flexible way of addressing (pointing to) different parts of an XML (en-US) document. As well as this, it can also be used to test addressed nodes within a document to determine whether they match a pattern or not.
FileReader
API-
The
FileReader
API lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, usingFile
orBlob
objects to specify the file or data to read. File objects may be obtained from aFileList
object returned as a result of a user selecting files using the<input>
element, from a drag and drop operation'sDataTransfer
(en-US) object, or from themozGetAsFile()
API on anHTMLCanvasElement
. - XMLHttpRequest의 HTML (en-US)
-
The W3C XMLHttpRequest specification adds HTML parsing support to
XMLHttpRequest
, which originally supported only XML parsing. This feature allows Web apps to obtain an HTML resource as a parsed DOM usingXMLHttpRequest
.
같이 보기
- Ajax: A New Approach to Web Applications
-
Jesse James Garrett, of adaptive path, wrote this article in February 2005, introducing Ajax and its related concepts.
- XMLHttpRequest 명세
-
WHATWG Living Standard