mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Phase 2 sample code conversions per instructions in doc: https://docs.google.com/document/d/1QqnVK8Mc0O1gU9ctPrs-JJ42V9_dHCuEttD_01pXh34/edit **Included** 1. ajs-quick-reference Minor changes to remove references to NgModule. Converted sample to standalone. 2. architecture Migrated the code sample. Made minor changes to remove references to NgModule. I explicitly deprecated the `architecture-module.md` page and removed it from the navigation. 4. deprecations / deprecations-guide Migrated the code sample which required pulling NgModule and Reactive Forms material into a new `deprecated` folder. Made minor changes to clarify when advice was specific to NgModule (see `loadChildren` in particular). 5. displaying-data Deleted this `displaying-data` sample entirely as there is no need for a sample app just to display a single, vanilla data binding in the deprecated `zone.md` page. Replaced reference in `zone.md` with an inline code snippet. 10. ngcontainer Converted the code sample. There is no guide page for this sample. It can be displayed in Stackblitz **Excluded** 3. cli-builder Code sample is not an app; nothing to convert. 6-9 - related to getting-started and setup. Waiting until Angular team is ready to proceed. 11. providers This is in its own commit and PR 51918 because it may not make sense to convert. See that PR for details. 12. routing-with-urlmatcher No work needed. Already Standalone. 13 schematics-for-libraries Non-trivial (see doc notes) and Angular may decide to leave as is. Should have own PR. 14 setup Non-trivial (see doc notes) and Angular may decide to leave as is. Should have own PR. PR Close #51918
263 lines
56 KiB
Markdown
263 lines
56 KiB
Markdown
# AngularJS to Angular concepts: Quick reference
|
|
|
|
*Angular* is the name for the Angular of today and tomorrow.
|
|
|
|
*AngularJS* is the name for all v1.x versions of Angular.
|
|
|
|
This guide helps you transition from AngularJS to Angular
|
|
by mapping AngularJS syntax to the corresponding Angular syntax.
|
|
|
|
**See the Angular syntax in this <live-example name="ajs-quick-reference"></live-example>**.
|
|
|
|
## Template basics
|
|
|
|
Templates are the user-facing part of an Angular application and are written in HTML.
|
|
The following table lists some of the key AngularJS template features with their corresponding Angular template syntax.
|
|
|
|
### Bindings / interpolation → bindings / interpolation
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>Bindings/interpolation</header> <code-example hideCopy format="html" language="html"> Your favorite hero is: {{vm.favoriteHero}} </code-example> In AngularJS, an expression in curly braces denotes one-way binding. This binds the value of the element to a property in the controller associated with this template. <br /> When using the `controller as` syntax, the binding is prefixed with the controller alias `vm` or `$ctrl` because you have to be specific about the source. | <header>Bindings/interpolation</header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.html" region="interpolation"></code-example> In Angular, a template expression in curly braces still denotes one-way binding. This binds the value of the element to a property of the component. The context of the binding is implied and is always the associated component, so it needs no reference variable. <br /> For more information, see the [Interpolation][AioGuideInterpolation] guide. |
|
|
|
|
### Filters → pipes
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>Filters</header> <code-example hideCopy format="html" language="html"> <td> 
 {{movie.title | uppercase}} 
 </td> </code-example> To filter output in AngularJS templates, use the pipe <code>|</code> character and one or more filters. <br /> This example filters the `title` property to uppercase. | <header>Pipes</header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="uppercase"></code-example> In Angular you use similar syntax with the pipe <code>|</code> character to filter output, but now you call them **pipes**. Many, but not all, of the built-in filters from AngularJS are built-in pipes in Angular. <br /> For more information, see [Filters/pipes][AioGuideAjsQuickReferenceFiltersPipes]. |
|
|
|
|
### Local variables → input variables
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>Local variables</header> <code-example hideCopy format="html" language="html"> <tr ng-repeat="movie in vm.movies"> 
 <td> 
 {{movie.title}} 
 </td> 
</tr> </code-example> Here, `movie` is a user-defined local variable. | <header>Input variables</header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="local"></code-example> Angular has true template input variables that are explicitly defined using the `let` keyword. <br /> For more information, see the [Structural directive shorthand][AioGuideStructuralDirectivesStructuralDirectiveShorthand] section of [Structural Directives][AioGuideStructuralDirectives]. |
|
|
|
|
## Template directives
|
|
|
|
AngularJS provides more than seventy built-in directives for templates.
|
|
Many of them are not needed in Angular because of its more capable and expressive binding system.
|
|
The following are some of the key AngularJS built-in directives and their equivalents in Angular.
|
|
|
|
### `ng-app` → bootstrapping
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-app</code></header> <code-example hideCopy format="html" language="html"> <body ng-app="movieHunter"> </code-example> The application startup process is called **bootstrapping**. <br /> Although you can bootstrap an AngularJS application in code, many applications bootstrap declaratively with the `ng-app` directive, giving it the name of the module \(`movieHunter`\) of the application. | <header>Bootstrapping</header> <code-example header="main.ts" format="typescript" hideCopy language="typescript" path="ajs-quick-reference/src/main.ts">Angular does not have a bootstrap directive. To launch the application in code, explicitly bootstrap the application's root component \(`AppComponent`\) in `main.ts`.|
|
|
|
|
### `ng-class` → `ngClass`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-class</code></header> <code-example hideCopy format="html" language="html"> <div ng-class="{active: isActive}"> 
 <div ng-class="{active: isActive, shazam: isImportant}"> </code-example> In AngularJS, the `ng-class` directive includes/excludes CSS classes based on an expression. The expression is often a key-value object, with key defined as a CSS class name, and value as a template expression that evaluates to a Boolean. <br /> In the first example, the `active` class is applied to the element if `isActive` is true. <br /> You can specify multiple classes, as shown in the second example. | <header><code>ngClass</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="ngClass"></code-example> In Angular, the `ngClass` directive works similarly. It includes/excludes CSS classes based on an expression. <br /> In the first example, the `active` class is applied to the element if `isActive` is true. <br /> You can specify multiple classes, as shown in the second example. <br /> Angular also has **class binding**, which is a good way to add or remove a single class, as shown in the third example. <br /> For more information see [Attribute, class, and style bindings][AioGuideAttributeBinding] page. |
|
|
|
|
### `ng-click` → Bind to the `click` event
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-click</code></header> <code-example hideCopy format="html" language="html"> <button ng-click="vm.toggleImage()"> 
 <button ng-click="vm.toggleImage($event)"> </code-example> In AngularJS, the `ng-click` directive allows you to specify custom behavior when an element is clicked. <br /> In the first example, when the user clicks the button, the `toggleImage()` method in the controller referenced by the `vm` `controller as` alias is executed. <br /> The second example demonstrates passing in the `$event` object, which provides details about the event to the controller. | <header>Bind to the <code>click</code> event</header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="event-binding"></code-example> AngularJS event-based directives do not exist in Angular. Rather, define one-way binding from the template view to the component using **event binding**. <br /> For event binding, define the name of the target event within parenthesis and specify a template statement, in quotes, to the right of the equals. Angular then sets up an event handler for the target event. When the event is raised, the handler executes the template statement. <br /> In the first example, when a user clicks the button, the `toggleImage()` method in the associated component is executed. <br /> The second example demonstrates passing in the `$event` object, which provides details about the event to the component. <br /> For a list of DOM events, see [Event reference][MdnDocsWebEvents]. <br /> For more information, see the [Event binding][AioGuideEventBinding] page. |
|
|
|
|
### `ng-controller` → component decorator
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-controller</code></header> <code-example hideCopy format="html" language="html"> <div ng-controller="MovieListCtrl as vm"> </code-example> In AngularJS, the `ng-controller` directive attaches a controller to the view. Using the `ng-controller`, or defining the controller as part of the routing, ties the view to the controller code associated with that view. | <header>Component decorator</header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.ts" region="component"></code-example> In Angular, the template no longer specifies its associated controller. Rather, the component specifies its associated template as part of the component class decorator. <br /> For more information, see [Architecture Overview][AioGuideArchitectureComponents]. |
|
|
|
|
### `ng-hide` → Bind to the `hidden` property
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-hide</code></header> In AngularJS, the `ng-hide` directive shows or hides the associated HTML element based on an expression. For more information, see [ng-show][AioGuideAjsQuickReferenceTemplateDirectives]. | <header>Bind to the <code>hidden</code> property</header> In Angular, you use property binding. Angular does not have a built-in *hide* directive. For more information, see [ng-show][AioGuideAjsQuickReferenceTemplateDirectives]. |
|
|
|
|
### `ng-href` → Bind to the `href` property
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-href</code></header> <code-example hideCopy format="html" language="html"> <a ng-href="{{ angularDocsUrl }}"> 
 Angular Docs 
 </a> </code-example> The `ng-href` directive allows AngularJS to preprocess the `href` property. `ng-href` can replace the binding expression with the appropriate URL before the browser fetches from that URL. <br /> In AngularJS, the `ng-href` is often used to activate a route as part of navigation. <br /> <code-example hideCopy format="html" language="html"> <a ng-href="#{{ moviesHash }}"> 
 Movies 
</a> </code-example> Routing is handled differently in Angular. | <header>Bind to the <code>href</code> property</header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="href"></code-example> Angular uses property binding. Angular does not have a built-in *href* directive. Place the `href` property of the element in square brackets and set it to a quoted template expression. For more information see the [Property binding][AioGuidePropertyBinding] page. In Angular, `href` is no longer used for routing. Routing uses `routerLink`, as shown in the following example. <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="router-link"></code-example> For more information on routing, see [Defining a basic route][AioGuideRouterDefiningABasicRoute] in the [Routing & Navigation][AioGuideRouter] page. |
|
|
|
|
### `ng-if` → `*ngIf`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-if</code></header> <code-example hideCopy format="html" language="html"> <table ng-if="movies.length"> </code-example> In AngularJS, the `ng-if` directive removes or recreates a section of the DOM, based on an expression. If the expression is false, the element is removed from the DOM. <br /> In this example, the `<table>` element is removed from the DOM unless the `movies` array has a length greater than zero. | <header><code>*ngIf</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.html" region="ngIf"></code-example> The `*ngIf` directive in Angular works the same as the `ng-if` directive in AngularJS. It removes or recreates a section of the DOM based on an expression. <br /> In this example, the `<table>` element is removed from the DOM unless the `movies` array has a length. <br /> The \(`*`\) before `ngIf` is required in this example. For more information, see [Structural Directives][AioGuideStructuralDirectives]. |
|
|
|
|
### `ng-model` → `ngModel`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-model</code></header> <code-example hideCopy format="html" language="html"> <input ng-model="vm.favoriteHero" /> </code-example> In AngularJS, the `ng-model` directive binds a form control to a property in the controller associated with the template. This provides **two-way binding** whereby changes result in the value in the view and the model being synchronized. | <header><code>ngModel</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.html" region="ngModel"></code-example> In Angular, **two-way binding** is indicated by `[()]`, descriptively referred to as a "banana in a box." This syntax is a shortcut for defining both:<ul><li>property binding, from the component to the view</li><li>event binding, from the view to the component</li></ul> thereby providing two-way binding. <br /> For more information on two-way binding with `ngModel`, see the [Displaying and updating properties with `ngModel`][AioGuideBuiltInDirectivesDisplayingAndUpdatingPropertiesWithNgmodel] section of [Built-in directives][AioGuideBuiltInDirectives]. |
|
|
|
|
### `ng-repeat` → `*ngFor`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-repeat</code></header> <code-example hideCopy format="html" language="html"> <tr ng-repeat="movie in vm.movies"> </code-example> In AngularJS, the `ng-repeat` directive repeats the associated DOM element for each item in the specified collection. <br /> In this example, the table row \(`<tr>`\) element repeats for each movie object in the collection of movies. | <header><code>*ngFor</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.html" region="ngFor"></code-example> The `*ngFor` directive in Angular is like the `ng-repeat` directive in AngularJS. It repeats the associated DOM element for each item in the specified collection. More accurately, it turns the defined element \(`<tr>` in this example\) and its contents into a template and uses that template to instantiate a view for each item in the list. <br /> Notice the other syntax differences: <ul><li>The \(`*`\) before `ngFor` is required</li><li>The `let` keyword identifies `movie` as an input variable</li><li>The list preposition is `of`, not `in`</li></ul>For more information, see [Structural Directives][AioGuideStructuralDirectives]. |
|
|
|
|
### `ng-show` → Bind to the `hidden` property
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-show</code></header> <code-example hideCopy format="html" language="html"> <h3 ng-show="vm.favoriteHero"> 
 Your favorite hero is: {{vm.favoriteHero}} 
 </h3> </code-example> In AngularJS, the `ng-show` directive shows or hides the associated DOM element, based on an expression. <br /> In this example, the `<div>` element is shown if the `favoriteHero` variable is truthy. | <header>Bind to the <code>hidden</code> property</header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.html" region="hidden"></code-example> Angular uses property binding. Angular has no built-in *show* directive. For hiding and showing elements, bind to the HTML `hidden` property. <br /> To conditionally display an element the `hidden` property of the element can be used. Place the `hidden` property in square brackets and set it to a quoted template expression that evaluates to the *opposite* of *show*. <br /> In this example, the `<div>` element is hidden if the `favoriteHero` variable is not truthy. <br /> For more information on property binding, see the [Property binding][AioGuidePropertyBinding] page. |
|
|
|
|
### `ng-src` → Bind to the `src` property
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-src</code></header> <code-example hideCopy format="html" language="html"> <img ng-src="{{movie.imageurl}}"> </code-example> The `ng-src` directive allows AngularJS to preprocess the `src` property. This replaces the binding expression with the appropriate URL before the browser fetches from that URL. | <header>Bind to the <code>src</code> property</header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="src"></code-example> Angular uses property binding. Angular has no built-in *src* directive. Place the `src` property in square brackets and set it to a quoted template expression. <br /> For more information on property binding, see the [Property binding][AioGuidePropertyBinding] page. |
|
|
|
|
### `ng-style` → `ngStyle`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-style</code></header> <code-example hideCopy format="html" language="html"> <div ng-style="{color: colorPreference}"> </code-example> In AngularJS, the `ng-style` directive sets a CSS style on an HTML element based on an expression. That expression is often a key-value control object with: <ul><li> each key of the object defined as a CSS property</li><li>each value defined as an expression that evaluates to a value appropriate for the style</li></ul> In the example, the `color` style is set to the current value of the `colorPreference` variable. | <header><code>ngStyle</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="ngStyle"></code-example> In Angular, the `ngStyle` directive works similarly. It sets a CSS style on an HTML element based on an expression. <br /> In the first example, the `color` style is set to the current value of the `colorPreference` variable. <br /> Angular also has **style binding**, which is good way to set a single style. This is shown in the second example. <br /> For more information on style binding, see the [Style binding][AioGuideAttributeBindingBindingToTheStyleAttribute] section of the [Attribute binding][AioGuideAttributeBinding] page. <br /> For more information on the `ngStyle` directive, see the [NgStyle][AioGuideBuiltInDirectivesSettingInlineStylesWithNgstyle] section of the [Built-in directives][AioGuideBuiltInDirectives] page. |
|
|
|
|
### `ng-switch` → `ngSwitch`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>ng-switch</code></header> <code-example hideCopy format="html" language="html"> <div ng-switch="vm.favoriteHero && vm.checkMovieHero(vm.favoriteHero)"> 
 <div ng-switch-when="true"> 
 Excellent choice. 
 </div> 
 <div ng-switch-when="false"> 
 No movie, sorry. 
 </div> 
 <div ng-switch-default> 
 Please enter your favorite hero. 
 </div> 
 </div> </code-example> In AngularJS, the `ng-switch` directive swaps the contents of an element by selecting one of the templates based on the current value of an expression. <br /> In this example, if `favoriteHero` is not set, the template displays "Please enter …" If `favoriteHero` is set, it checks the movie hero by calling a controller method. If that method returns `true`, the template displays "Excellent choice!" If that methods returns `false`, the template displays "No movie, sorry!" | <header><code>ngSwitch</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.html" region="ngSwitch"></code-example> In Angular, the `ngSwitch` directive works similarly. It displays an element whose `*ngSwitchCase` matches the current `ngSwitch` expression value. <br /> In this example, if `favoriteHero` is not set, the `ngSwitch` value is `null` and `*ngSwitchDefault` displays, "Please enter your favorite hero." If `favoriteHero` is set, the application checks the movie hero by calling a component method. If that method returns `true`, the application selects `*ngSwitchCase="true"` and displays: "Excellent choice." If that methods returns `false`, the application selects `*ngSwitchCase="false"` and displays: "No movie, sorry." <br /> The \(`*`\) before `ngSwitchCase` and `ngSwitchDefault` is required in this example. <br /> For more information, see [The NgSwitch directives][AioGuideBuiltInDirectivesSwitchingCasesWithNgswitch] section of the [Built-in directives][AioGuideBuiltInDirectives] page. |
|
|
|
|
## Filters / pipes
|
|
|
|
Angular **pipes** provide formatting and transformation for data in the template, like AngularJS **filters**.
|
|
Many of the built-in filters in AngularJS have corresponding pipes in Angular.
|
|
For more information on pipes, see [Pipes][AioGuidePipes].
|
|
|
|
### `currency` → `currency`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>currency</code></header> <code-example hideCopy format="html" language="html"> <td> 
 {{movie.price | currency}} 
 </td> </code-example> Formats a number as currency. | <header><code>currency</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="currency"></code-example> The Angular `currency` pipe is similar although some of the parameters have changed. |
|
|
|
|
### `date` → `date`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>date</code></header> <code-example hideCopy format="html" language="html"> <td> 
 {{movie.releaseDate | date}} 
 </td> </code-example> Formats a date to a string based on the requested format. | <header><code>date</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="date"></code-example> The Angular `date` pipe is similar. |
|
|
|
|
### `filter` → none
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>filter</code></header> <code-example hideCopy format="html" language="html"> <tr ng-repeat="movie in movieList | filter: {title:listFilter}"> </code-example> Selects a subset of items from the defined collection, based on the filter criteria. | <header>none</header> For performance reasons, no comparable pipe exists in Angular. Do all your filtering in the component. If you need the same filtering code in several templates, consider building a custom pipe. |
|
|
|
|
### `json` → `json`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>json</code></header> <code-example hideCopy format="html" language="html"> <pre> 
 {{movie | json}} 
 </pre> </code-example> Converts a JavaScript object into a JSON string. This is useful for debugging. | <header><code>json</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="json"></code-example> The Angular [`json`][AioApiCommonJsonpipe] pipe does the same thing. |
|
|
|
|
### `limitTo` → `slice`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>limitTo</code></header> <code-example hideCopy format="html" language="html"> <tr ng-repeat="movie in movieList | limitTo:2:0"> </code-example> Selects up to the first parameter `2` number of items from the collection starting optionally at the beginning index `0`. | <header><code>slice</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="slice"></code-example> The `SlicePipe` does the same thing but the *order of the parameters is reversed*, in keeping with the JavaScript `Slice` method. The first parameter is the starting index and the second is the limit. As in AngularJS, coding this operation within the component instead could improve performance. |
|
|
|
|
### `lowercase` → `lowercase`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>lowercase</code></header> <code-example hideCopy format="html" language="html"> <td> 
 {{movie.title | lowercase}} 
 </td> </code-example> Converts the string to lowercase. | <header><code>lowercase</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="lowercase"></code-example> The Angular `lowercase` pipe does the same thing. |
|
|
|
|
### `number` → `number`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>number</code></header> <code-example hideCopy format="html" language="html"> <td> 
 {{movie.starRating | number}} 
 </td> </code-example> Formats a number as text. | <header><code>number</code></header> <code-example hideCopy path="ajs-quick-reference/src/app/app.component.html" region="number"></code-example> The Angular [`number`][AioApiCommonDecimalpipe] pipe is similar. It provides more capabilities when defining the decimal places, as shown in the preceding second example. <br /> Angular also has a `percent` pipe, which formats a number as a local percentage as shown in the third example. |
|
|
|
|
### `orderBy` → none
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>orderBy</code></header> <code-example hideCopy format="html" language="html"> <tr ng-repeat="movie in movieList | orderBy : 'title'"> </code-example> Displays the collection in the order specified by the expression. In this example, the movie title orders the `movieList`. | <header>none</header> For performance reasons, no comparable pipe exists in Angular. Instead, use component code to order or sort results. If you need the same ordering or sorting code in several templates, consider building a custom pipe. |
|
|
|
|
## Controllers and Components
|
|
|
|
In AngularJS, you write the code that provides the model and the methods for the view in a **controller**.
|
|
|
|
In Angular, you build a **component** which typically acquires its model from an **injected service**.
|
|
|
|
Because much AngularJS code is in JavaScript, JavaScript code is shown in the AngularJS column.
|
|
The Angular code is shown using TypeScript.
|
|
|
|
### Immediately invoked function expression (IIFE) → none
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>IIFE</header> <code-example hideCopy format="typescript" language="typescript"> ( 
 function () { 
 … 
 }() 
); </code-example> In AngularJS, an IIFE around controller code keeps it out of the global namespace. | <header>none</header> This is a nonissue in Angular because ES 2015 modules handle the namespace for you. |
|
|
|
|
|
|
|
|
### Controller registration → component decorator
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>Controller registration</header> <code-example hideCopy format="typescript" language="typescript"> angular .module( 
 "movieHunter" 
) .controller( 
 "MovieListCtrl", 
 [ 
 "movieService", 
 MovieListCtrl 
 ] 
); </code-example> AngularJS has code in each controller that looks up an appropriate AngularJS module and registers the controller with that module. <br /> The first argument is the controller name. The second argument defines the string names of all dependencies injected into this controller, and a reference to the controller function. | <header>Component decorator</header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.ts" region="component"></code-example> Angular adds a decorator to the component class to provide any required metadata. The `@Component` decorator declares that the class is a component and provides metadata about that component such as its selector, or tag, and its template. <br /> This is how you associate a template with logic, which is defined in the component class. <br /> For more information, see the [Components][AioGuideArchitectureComponents] section of the [Architecture Overview][AioGuideArchitecture] page. |
|
|
|
|
### Controller function → component class
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>Controller function</header> <code-example hideCopy format="typescript" language="typescript"> function MovieListCtrl(movieService) { 
 } </code-example> In AngularJS, you write the code for the model and methods in a controller function. | <header>Component class</header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.ts" region="class"></code-example> In Angular, you create a component class to contain the data model and control methods. Use the TypeScript <code>export</code> keyword to export the class so that the component can be imported into other classes. <br /> For more information, see the [Components][AioGuideArchitectureComponents] section of the [Architecture Overview][AioGuideArchitecture] page. |
|
|
|
|
### Dependency injection → dependency injection
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header>Dependency injection</header> <code-example hideCopy format="typescript" language="typescript"> MovieListCtrl.$inject = [ 
 'MovieService' 
]; 
function MovieListCtrl(movieService) { 
} </code-example> In AngularJS, you pass in any dependencies as controller function arguments. This example injects a `MovieService`. <br /> To guard against minification problems, tell Angular explicitly that it should inject an instance of the `MovieService` in the first parameter. | <header>Dependency injection</header> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.ts" region="di"></code-example> In Angular, you pass in dependencies as arguments to the component class constructor. This example injects a `MovieService`. The TypeScript type of the first parameter tells Angular what to inject, even after minification. <br /> For more information, see the [Dependency injection][AioGuideArchitectureServicesAndDependencyInjection] section of the [Architecture Overview][AioGuideArchitecture]. |
|
|
|
|
## Style sheets
|
|
|
|
Style sheets give your application a nice look.
|
|
In AngularJS, you specify the style sheets for your entire application.
|
|
As the application grows over time, the styles for the many parts of the application merge, which can cause unexpected results.
|
|
In Angular, you can still define style sheets for your entire application.
|
|
Now you can also encapsulate a style sheet within a specific component.
|
|
|
|
### `Link` tag → `styles` configuration or `styleUrls`
|
|
|
|
| AngularJS | Angular |
|
|
|:--- |:--- |
|
|
| <header><code>Link</code> tag</header> <code-example hideCopy format="html" language="html"> <link href="styles.css" 
 rel="stylesheet" /> </code-example> AngularJS, uses a `link` tag in the head section of the `index.html` file to define the styles for the application. | <header><code>styles</code> configuration</header> <code-example hideCopy path="ajs-quick-reference/.angular-cli.1.json" region="styles"></code-example> With the Angular CLI, you can configure your global styles in the `angular.json` file. You can rename the extension to `.scss` to use sass. <br /><br /> <header><code>styleUrls</code></header> In Angular, you can use the `styles` or `styleUrls` property of the `@Component` metadata to define a style sheet for a particular component. <br /> <code-example hideCopy path="ajs-quick-reference/src/app/movie-list.component.ts" region="style-url"></code-example> This allows you to set appropriate styles for individual components that do not leak into other parts of the application. |
|
|
|
|
<!-- links -->
|
|
|
|
[AioApiCommonDecimalpipe]: api/common/DecimalPipe "DecimalPipe | @angular/common - API | Angular"
|
|
[AioApiCommonJsonpipe]: api/common/JsonPipe "JsonPipe | @angular/common - API | Angular"
|
|
|
|
[AioGuideAjsQuickReferenceFiltersPipes]: guide/ajs-quick-reference#filters--pipes "Filters/pipes - AngularJS to Angular concepts: Quick reference | Angular"
|
|
[AioGuideAjsQuickReferenceTemplateDirectives]: guide/ajs-quick-reference#template-directives "Template directives - AngularJS to Angular concepts: Quick reference | Angular"
|
|
|
|
[AioGuideArchitecture]: guide/architecture "Introduction to Angular concepts | Angular"
|
|
[AioGuideArchitectureComponents]: guide/architecture#components "Components - Introduction to Angular concepts | Angular"
|
|
|
|
[AioGuideArchitectureServicesAndDependencyInjection]: guide/architecture#services-and-dependency-injection "Services and dependency injection - Introduction to Angular concepts | Angular"
|
|
|
|
[AioGuideAttributeBinding]: guide/attribute-binding "Attribute, class, and style bindings | Angular"
|
|
[AioGuideAttributeBindingBindingToTheStyleAttribute]: guide/class-binding "Class and style binding | Angular"
|
|
|
|
[AioGuideBuiltInDirectives]: guide/built-in-directives "Built-in directives | Angular"
|
|
[AioGuideBuiltInDirectivesDisplayingAndUpdatingPropertiesWithNgmodel]: guide/built-in-directives#displaying-and-updating-properties-with-ngmodel "Displaying and updating properties with ngModel - Built-in directives | Angular"
|
|
[AioGuideBuiltInDirectivesSettingInlineStylesWithNgstyle]: guide/built-in-directives#setting-inline-styles-with-ngstyle "Setting inline styles with NgStyle - Built-in directives | Angular"
|
|
[AioGuideBuiltInDirectivesSwitchingCasesWithNgswitch]: guide/built-in-directives#switching-cases-with-ngswitch "Switching cases with NgSwitch - Built-in directives | Angular"
|
|
|
|
[AioGuideEventBinding]: guide/event-binding "Event binding | Angular"
|
|
|
|
[AioGuideInterpolation]: guide/interpolation "Text interpolation | Angular"
|
|
|
|
[AioGuidePipes]: guide/pipes "Transforming Data Using Pipes | Angular"
|
|
|
|
[AioGuidePropertyBinding]: guide/property-binding "Property binding | Angular"
|
|
|
|
[AioGuideRouter]: guide/router "Common Routing Tasks | Angular"
|
|
[AioGuideRouterDefiningABasicRoute]: guide/router#defining-a-basic-route "Defining a basic route - Common Routing Tasks | Angular"
|
|
|
|
[AioGuideStructuralDirectives]: guide/structural-directives "Writing structural directives | Angular"
|
|
[AioGuideStructuralDirectivesStructuralDirectiveShorthand]: guide/structural-directives#structural-directive-shorthand "Structural directive shorthand - Writing structural directives | Angular"
|
|
|
|
<!-- external links -->
|
|
|
|
[MdnDocsWebEvents]: https://developer.mozilla.org/docs/Web/Events "Event reference | MDN"
|
|
|
|
<!-- end links -->
|
|
|
|
@reviewed 2023-09-25
|