Thursday, May 22, 2014

What are the Basic Building Blocks of AngularJS?


HTML with additional markup
extend HTML with custom attributes and elements. Dirrectives tell HTML compiler to attach specific behaviour to a DOM emement.
the data shown to the user in the view and with which the user interacts
context where the model is stored so that controllers, directives and expressions can access it
access variables and functions from the scope
parses the template and instantiates directives and expressions
formats the value of an expression for display to the user
what the user sees (the DOM)
sync data between the model and the view
the business logic behind views
Creates and wires objects and functions
dependency injection container
a container for the different parts of an app including controllers, services, filters, directives which configures the Injector
reusable business logic independent of views

No comments:

Post a Comment