Read Text File and Display in Html Using Angular 4

You can brandish data by binding controls in an HTML template to properties of an Angular component.

In this folio, you'll create a component with a listing of heroes. You'll display the listing of hero names and conditionally show a message beneath the list.

The last UI looks like this:

Final UI

Contents

  • Showing component properties with interpolation.
  • Showing an assortment holding with NgFor.
  • Conditional display with NgIf.

The demonstrates all of the syntax and code snippets described in this page.

Showing component properties with interpolation

The easiest way to display a component property is to bind the property proper name through interpolation. With interpolation, yous put the property proper name in the view template, enclosed in double curly braces: {{myHero}}.

Follow the setup instructions for creating a new project named .

Then modify the file by irresolute the template and the body of the component.

When yous're washed, it should look like this:

src/app/app.component.ts

import { Component } from '@angular/core'; @Component({ selector: 'my-app', template: ` <h1>{{title}}</h1> <h2>My favorite hero is: {{myHero}}</h2> ` }) export form AppComponent { title = 'Bout of Heroes'; myHero = 'Windstorm'; }

You lot added two properties to the formerly empty component: title and myHero.

The revised template displays the two component properties using double curly brace interpolation:

template: ` <h1>{{championship}}</h1> <h2>My favorite hero is: {{myHero}}</h2> `

The template is a multi-line string within ECMAScript 2015 backticks (`). The backtick (`)—which is non the aforementioned character as a unmarried quote (')—allows you to etch a string over several lines, which makes the HTML more readable.

Angular automatically pulls the value of the title and myHero properties from the component and inserts those values into the browser. Angular updates the display when these properties change.

More precisely, the redisplay occurs later on some kind of asynchronous upshot related to the view, such equally a keystroke, a timer completion, or a response to an HTTP asking.

Notice that yous don't call new to create an instance of the AppComponent class. Angular is creating an instance for you. How?

The CSS selector in the @Component decorator specifies an element named <my-app>. That chemical element is a placeholder in the body of your alphabetize.html file:

src/index.html (body)

<body> <my-app>loading...</my-app> </torso>

When you bootstrap with the AppComponent course (in ), Athwart looks for a <my-app> in the index.html, finds it, instantiates an case of AppComponent, and renders information technology within the <my-app> tag.

Now run the app. Information technology should display the title and hero proper name:

Title and Hero

The next few sections review some of the coding choices in the app.

Template inline or template file?

You tin can shop your component'south template in one of two places. You can ascertain it inline using the template holding, or you tin can define the template in a split HTML file and link to information technology in the component metadata using the @Component decorator's templateUrl property.

The choice between inline and separate HTML is a matter of taste, circumstances, and organization policy. Hither the app uses inline HTML because the template is modest and the demo is simpler without the boosted HTML file.

In either style, the template information bindings have the same access to the component's properties.

Constructor or variable initialization?

Although this case uses variable assignment to initialize the components, you can instead declare and initialize the backdrop using a constructor:

src/app/app-ctor.component.ts (class)

export class AppCtorComponent { title: string; myHero: string; constructor() { this.championship = 'Tour of Heroes'; this.myHero = 'Windstorm'; } }

This app uses more terse "variable assignment" fashion simply for brevity.

Showing an array property with *ngFor

To display a list of heroes, begin by adding an array of hero names to the component and redefine myHero to exist the beginning name in the array.

src/app/app.component.ts (class)

consign class AppComponent { title = 'Tour of Heroes'; heroes = ['Windstorm', 'Bombasto', 'Magneta', 'Tornado']; myHero = this.heroes[0]; }

At present use the Angular ngFor directive in the template to display each item in the heroes list.

src/app/app.component.ts (template)

template: ` <h1>{{championship}}</h1> <h2>My favorite hero is: {{myHero}}</h2> <p>Heroes:</p> <ul> <li *ngFor="let hero of heroes"> {{ hero }} </li> </ul> `

This UI uses the HTML unordered list with <ul> and <li> tags. The *ngFor in the <li> chemical element is the Angular "repeater" directive. It marks that <li> element (and its children) as the "repeater template":

<li *ngFor="permit hero of heroes"> {{ hero }} </li>

Don't forget the leading asterisk (*) in *ngFor. It is an essential part of the syntax. For more information, run across the Template Syntax page.

Notice the hero in the ngFor double-quoted instruction; it is an example of a template input variable. Read more than about template input variables in the microsyntax department of the Template Syntax page.

Angular duplicates the <li> for each detail in the list, setting the hero variable to the item (the hero) in the current iteration. Angular uses that variable every bit the context for the interpolation in the double curly braces.

In this case, ngFor is displaying an array, but ngFor tin repeat items for any iterable object.

At present the heroes appear in an unordered listing.

After ngfor

Creating a class for the data

The app'south code defines the data direct inside the component, which isn't all-time practice. In a elementary demo, however, it's fine.

At the moment, the binding is to an array of strings. In real applications, most bindings are to more specialized objects.

To convert this binding to employ specialized objects, turn the array of hero names into an array of Hero objects. For that y'all'll need a Hero class.

Create a new file in the app folder called with the post-obit code:

src/app/hero.ts (extract)

consign class Hero { constructor( public id: number, public proper name: string) { } }

Y'all've defined a class with a constructor and two properties: id and name.

It might non look like the class has backdrop, but information technology does. The declaration of the constructor parameters takes advantage of a TypeScript shortcut.

Consider the first parameter:

src/app/hero.ts (id)

public id: number,

That brief syntax does a lot:

  • Declares a constructor parameter and its type.
  • Declares a public holding of the same name.
  • Initializes that property with the corresponding statement when creating an case of the grade.

Using the Hero course

After importing the Hero course, the AppComponent.heroes property can return a typed array of Hero objects:

src/app/app.component.ts (heroes)

heroes = [ new Hero(1, 'Windstorm'), new Hero(13, 'Bombasto'), new Hero(xv, 'Magneta'), new Hero(xx, 'Tornado') ]; myHero = this.heroes[0];

Next, update the template. At the moment information technology displays the hero's id and name. Set that to display only the hero's name property.

src/app/app.component.ts (template)

template: ` <h1>{{title}}</h1> <h2>My favorite hero is: {{myHero.proper noun}}</h2> <p>Heroes:</p> <ul> <li *ngFor="let hero of heroes"> {{ hero.name }} </li> </ul> `

The brandish looks the same, but the code is clearer.

Conditional brandish with NgIf

Sometimes an app needs to brandish a view or a portion of a view only under specific circumstances.

Let'due south alter the instance to brandish a message if there are more than three heroes.

The Athwart ngIf directive inserts or removes an chemical element based on a truthy/falsy condition. To run across it in action, add together the following paragraph at the bottom of the template:

src/app/app.component.ts (message)

<p *ngIf="heroes.length > 3">There are many heroes!</p>

Don't forget the leading asterisk (*) in *ngIf. It is an essential part of the syntax. Read more most ngIf and * in the ngIf section of the Template Syntax page.

The template expression inside the double quotes, *ngIf="heros.length > iii", looks and behaves much like TypeScript. When the component's list of heroes has more than three items, Athwart adds the paragraph to the DOM and the message appears. If in that location are 3 or fewer items, Angular omits the paragraph, and then no message appears. For more data, see the template expressions section of the Template Syntax folio.

Angular isn't showing and hiding the bulletin. It is adding and removing the paragraph element from the DOM. That improves performance, especially in larger projects when conditionally including or excluding big chunks of HTML with many information bindings.

Try it out. Considering the array has four items, the message should appear. Go dorsum into and delete or comment out ane of the elements from the hero array. The browser should refresh automatically and the message should disappear.

Summary

Now you know how to utilize:

  • Interpolation with double curly braces to brandish a component property.
  • ngFor to display an array of items.
  • A TypeScript class to shape the model data for your component and display backdrop of that model.
  • ngIf to conditionally brandish a chunk of HTML based on a boolean expression.

Here'south the terminal code:

import { Component } from '@angular/cadre'; import { Hero } from './hero'; @Component({ selector: 'my-app', template: ` <h1>{{title}}</h1> <h2>My favorite hero is: {{myHero.name}}</h2> <p>Heroes:</p> <ul> <li *ngFor="let hero of heroes"> {{ hero.proper noun }} </li> </ul> <p *ngIf="heroes.length > 3">At that place are many heroes!</p> ` }) export grade AppComponent { title = 'Bout of Heroes'; heroes = [ new Hero(i, 'Windstorm'), new Hero(xiii, 'Bombasto'), new Hero(15, 'Magneta'), new Hero(twenty, 'Tornado') ]; myHero = this.heroes[0]; } export class Hero { constructor( public id: number, public proper noun: string) { } } import { NgModule } from '@athwart/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; @NgModule({ imports: [ BrowserModule ], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export form AppModule { } import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; platformBrowserDynamic().bootstrapModule(AppModule);

cruzspecculp.blogspot.com

Source: https://v2.angular.io/docs/ts/latest/guide/displaying-data.html

Related Posts

0 Response to "Read Text File and Display in Html Using Angular 4"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel