Difference between revisions of "AngularJS"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Component definition object)
(Component definition object)
Line 65: Line 65:
  
 
The selector specifies a simple CSS selector for a host HTML element named <code>my-app</code>. Angular creates and displays an instance of our <code>AppComponent</code> wherever it encounters a <code>my-app</code> element in the host HTML.
 
The selector specifies a simple CSS selector for a host HTML element named <code>my-app</code>. Angular creates and displays an instance of our <code>AppComponent</code> wherever it encounters a <code>my-app</code> element in the host HTML.
 +
 +
The template property holds the component's companion template. A template is a form of HTML that tells Angular how to render a view. In this example, the template is a single line of HTML announcing "Hello Angular".
  
 
== Promises ==
 
== Promises ==

Revision as of 17:16, 9 December 2016

In software development, AngularJS (commonly referred to as "Angular") is an open source web application JavaScript framework for developing single-page applications.

This article focuses on Angular 2.

Description

AngularJS simplifies both the development and the testing of web applications by providing a framework for client-side Model–view–controller (MVC) architecture, along with components commonly used in rich Internet applications.

AngularJS works by first reading the HTML page, which has embedded into it additional custom tag attributes.

Angular interprets those attributes as directives to bind input or output parts of the page to a model that is represented by standard JavaScript variables.

The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.

Component

The Component is the most fundamental of Angular concepts.

A component is a class that controls a view template.

A component manages a view: a piece of the web page which displays information for the user, and responds to user feedback.

Component configuration

The Component method takes a configuration object with three properties.

  • The Class method is where you implement the component itself, giving it properties and methods that bind to the view and whatever behavior is appropriate for this part of the UI.

Modules

Angular apps are modular. They consist of many files each dedicated to a purpose.

ES5 JavaScript doesn't have a native module system. There are several popular 3rd party module systems available.

Module interaction

In Angular apps, modules reference other modules using the app object.

When another module needs to refer to AppComponent, it gets it from app.AppComponent.

Angular modularity

Angular is also modular. It is a collection of library modules. Each library is itself a module made up of several, related feature modules.

When we need something from Angular, we use the ng object.

Class defintions

.Class({
      constructor: function() {}
});

Component definition object

ng.core.Component() tells Angular that this class definition object is an Angular component. The configuration object passed to the ng.core.Component() method has two fields, a selector and a template.

ng.core.Component({
  selector: 'my-app',
  template: '<h1>Hello Angular</h1>'
})

The selector specifies a simple CSS selector for a host HTML element named my-app. Angular creates and displays an instance of our AppComponent wherever it encounters a my-app element in the host HTML.

The template property holds the component's companion template. A template is a form of HTML that tells Angular how to render a view. In this example, the template is a single line of HTML announcing "Hello Angular".

Promises

Promises in AngularJS are provided by the built-in $q service. They provide a way to execute asynchronous functions in series by registering them with a promise object.

Promises have made their way into native JavaScript as part of the ES6 specification. The angular $q service provides an interface that closely resembles this new API so porting code to ES6 should be easy.

See Promise object (JavaScript).

TreeView

See:

See also

External links