Terms Flashcards

1
Q

Directives

A

extends HTML with custom attributes and elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Model

A

The data shown to the user in the view and with which the user interacts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Scope

A

Context where the model is stored so that controllers, directives and expressions can access it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Expressions

A

Access variables and functions from the scope

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Compiler

A

Parses the template and instantiates directives and expressions.

An angular service which traverses the Dom looking for attributes, a process that happens in two steps:

  1. Compile: traverse Dom and collect all of the directives.
  2. Link: combine the directives with a scope and produce a live view.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Filter

A

Formats the value of an expression for display to the user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

View

A

What the user sees

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Data binding

A

Sync data between the model and the view

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Controller

A

The business logic behind the view

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Dependency injection

A

Creates and wires objects and functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Injector

A

Dependency injection container

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Module

A

A container for the different parts of an app including controllers, services, filters, directives which configures the injector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Service

A

Reusable business logic for the views

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Template

A

HTML with additional markup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly