Please enable JavaScript.
Coggle requires JavaScript to display documents.
Angular (Custom Learning Program (Gather Components phase of learning plan…
Angular
Custom Learning Program
Gather Components phase of learning plan.
Components
Directives
What is Angular?
Angular apps are a collection of modules called
NgModules
.
What is a Module?
Modules are the containers for the different parts of your application.
What is an Angular app made up of?
Services
What are services?
1 more item...
Filters
What are Filters?
Directives
What are Directives?
3 more items...
Component
What are Components?
1 more item...
Oberserables
What are Oberserables?
How to launch the application?
By bootstrapping the root module with the necessary dependencies.
Every application has at least one NgModules class. The
root module
is conventionally named AppModule.
Most applications have more than just one module. These modules are called
feature modules
.
NgModules whether a
root
or
feature
is a class with an
NgModules
decorator
Angular is a framework for building
client applications
in HTML and either JavaScript or a language like TypeScript that compiles to JavaScript.
Template
Binds
event to function in component
Component function
Component
Property Binding
displays property on template
#
What does event binding and property binding look like on the HTML template?
[ ] binds a property to template
Property binding send data from the component to be displayed on the HTML template.
( ) binds user action to a component
Event binding send data from the UI to the component so that data can be process by a function.
{{}} interpilation
Binds data from the component to the DOM
Structure Map
Treasure Box
How do you write an Angular application?
You write an Angular application by composing HTML templates with Angular markup
Component class
Add application logic in services
Box components, and services in modules