|
8 | 8 | This section briefly touches on all of the important parts of AngularJS using a simple example.
|
9 | 9 | For a more in-depth explanation, see the {@link tutorial/ tutorial}.
|
10 | 10 |
|
11 |
| -| Concept | Description | |
12 |
| -|------------------|------------------------------------------| |
13 |
| -|{@link concepts#template Template} | HTML with additional markup | |
14 |
| -|{@link concepts#directive Directives} | extend HTML with custom attributes and elements | |
15 |
| -|{@link concepts#model Model} | the data shown to the user in the view and with which the user interacts | |
16 |
| -|{@link concepts#scope Scope} | context where the model is stored so that controllers, directives and expressions can access it | |
17 |
| -|{@link concepts#expression Expressions} | access variables and functions from the scope | |
18 |
| -|{@link concepts#compiler Compiler} | parses the template and instantiates directives and expressions | |
19 |
| -|{@link concepts#filter Filter} | formats the value of an expression for display to the user | |
20 |
| -|{@link concepts#view View} | what the user sees (the DOM) | |
21 |
| -|{@link concepts#databinding Data Binding} | sync data between the model and the view | |
22 |
| -|{@link concepts#controller Controller} | the business logic behind views | |
23 |
| -|{@link concepts#di Dependency Injection} | Creates and wires objects and functions | |
24 |
| -|{@link concepts#injector Injector} | dependency injection container | |
25 |
| -|{@link concepts#module Module} | a container for the different parts of an app including controllers, services, filters, directives which configures the Injector | |
26 |
| -|{@link concepts#service Service} | reusable business logic independent of views | |
| 11 | +| Concept | Description | |
| 12 | +|--------------------------------------------|--------------------------------------------------------------------------| |
| 13 | +|{@link concepts#template Template} | HTML with additional markup | |
| 14 | +|{@link concepts#directive Directives} | extend HTML with custom attributes and elements | |
| 15 | +|{@link concepts#model Model} | the data shown to the user in the view and with which the user interacts | |
| 16 | +|{@link concepts#scope Scope} | context where the model is stored so that controllers, directives and expressions can access it | |
| 17 | +|{@link concepts#expression Expressions} | access variables and functions from the scope | |
| 18 | +|{@link concepts#compiler Compiler} | parses the template and instantiates directives and expressions | |
| 19 | +|{@link concepts#filter Filter} | formats the value of an expression for display to the user | |
| 20 | +|{@link concepts#view View} | what the user sees (the DOM) | |
| 21 | +|{@link concepts#databinding Data Binding} | sync data between the model and the view | |
| 22 | +|{@link concepts#controller Controller} | the business logic behind views | |
| 23 | +|{@link concepts#di Dependency Injection} | Creates and wires objects and functions | |
| 24 | +|{@link concepts#injector Injector} | dependency injection container | |
| 25 | +|{@link concepts#module Module} | a container for the different parts of an app including controllers, services, filters, directives which configures the Injector | |
| 26 | +|{@link concepts#service Service} | reusable business logic independent of views | |
27 | 27 |
|
28 | 28 |
|
29 | 29 | ## A first example: Data binding
|
|
0 commit comments