This page (revision-1) was last changed on 29-Nov-2024 16:16 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 added 17 lines
!!! Overview
[{$pagename}] ([SPA]) is a [Browser]-based [application] or [website] that interacts with the [user-agent] by dynamically rewriting the current page rather than loading entire new pages from a server.[{$pagename}] approach avoids interruption of the user experience between successive pages, making the [application] behave more like a desktop application.
[{$pagename}] will either all necessary code – [HTML], [JavaScript], and [CSS] – is retrieved with a single page load, or the appropriate resources are dynamically loaded and added to the page as necessary, usually in response to user actions. The page does not reload at any point in the process, nor does control transfer to another page, although the location hash or the [HTML5] History API can be used to provide the perception and navigability of separate logical pages in the application.
[{$pagename}] interaction often involves dynamic communication with the [web] [server] behind the scenes.
[{$pagename}] is not a single technology, but rather a group of technologies. [HTML], [JavaScript], and [CSS] can be used in combination to markup and style information. The [DOM] is accessed with [JavaScript] to dynamically display – and allow the user to interact with – the information presented. [JavaScript] and the [{$pagename}] object provide a method for exchanging data asynchronously between [browser] and [server] to avoid full page reloads.
Requests are doen using [HTML], XML, [JSON], [XMLHttpRequest] to the server typically result in either raw [data] (e.g., [XML] or [JSON]), or new [HTML] being returned. In the case where [HTML] is returned by the server, [JavaScript] on the client updates a partial area of the [DOM] ([Document Object Model]). When raw [data] is returned, often a [client-side] [JavaScript] [XML] / ([XSL]) process (and in the case of [JSON] a template) is used to translate the raw data into [HTML], which is then used to update a partial area of the [DOM].
!! More Information
There might be more information for this subject on one of the following:
[{ReferringPagesPlugin before='*' after='\n' }]
----
* [#1] - [Single-page_application|Wikipedia:Single-page_application|target='_blank'] - based on information obtained 2017-10-11-
* [#2] - [OAuth 2.0 for Browser-Based Apps|https://tools.ietf.org/html/draft-ietf-oauth-browser-based-apps-04|target='_blank'] - based on information obtained 2019-12-23