admin管理员组文章数量:1346676
I am pretty new in Angular 2 and I am not so into JavaScript\TypeScript (I came from Java) and I have some doubt about an example that I am studying related how to a ponent can use a property defined in another ponent (property\event binding). The example show how an array of element declared in a child ponent can be used and shown in the parent ponent.
So I have the app-ponent that is the parent ponent.
This is the app-ponent "view" named app-ponent.html:
<div class="container">
<app-cockpit></app-cockpit>
<hr>
<div class="row">
<div class="col-xs-12">
<app-server-element
*ngFor="let serverElement of serverElements"
[element]="serverElement"></app-server-element>
</div>
</div>
</div>
From what I can undestand this code generate app-server-element (another ponent of my application with its layout) starting from the serverElements array that is defined into the appponent.ts class, this one:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './appponent.html',
styleUrls: ['./appponent.css']
})
export class AppComponent {
serverElements = [{type: 'server', name: 'TestServer', content: 'Just a Test'}];
}
So here I have a this first doubt: doing:
<app-server-element
*ngFor="let serverElement of serverElements"
[element]="serverElement">
</app-server-element>
The *ngFor directive is iterating on the serverElements array that is defined into the appponent.ts class (related to the main app-ponent ponent) and not on the server-elementponent.ts class (related to the ponent).
It works fine but it seems to me a little strange. Why? My idea is that this *ngFor directive is declared into the HTML code of the app-ponent.html related to the , so the iteration is on an array that is defined in the related class.
Is it or am I missing something?
I am pretty new in Angular 2 and I am not so into JavaScript\TypeScript (I came from Java) and I have some doubt about an example that I am studying related how to a ponent can use a property defined in another ponent (property\event binding). The example show how an array of element declared in a child ponent can be used and shown in the parent ponent.
So I have the app-ponent that is the parent ponent.
This is the app-ponent "view" named app-ponent.html:
<div class="container">
<app-cockpit></app-cockpit>
<hr>
<div class="row">
<div class="col-xs-12">
<app-server-element
*ngFor="let serverElement of serverElements"
[element]="serverElement"></app-server-element>
</div>
</div>
</div>
From what I can undestand this code generate app-server-element (another ponent of my application with its layout) starting from the serverElements array that is defined into the app.ponent.ts class, this one:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.ponent.html',
styleUrls: ['./app.ponent.css']
})
export class AppComponent {
serverElements = [{type: 'server', name: 'TestServer', content: 'Just a Test'}];
}
So here I have a this first doubt: doing:
<app-server-element
*ngFor="let serverElement of serverElements"
[element]="serverElement">
</app-server-element>
The *ngFor directive is iterating on the serverElements array that is defined into the app.ponent.ts class (related to the main app-ponent ponent) and not on the server-element.ponent.ts class (related to the ponent).
It works fine but it seems to me a little strange. Why? My idea is that this *ngFor directive is declared into the HTML code of the app-ponent.html related to the , so the iteration is on an array that is defined in the related class.
Is it or am I missing something?
Share Improve this question asked Jun 13, 2017 at 12:33 AndreaNobiliAndreaNobili 43.1k122 gold badges361 silver badges681 bronze badges 1-
1
The loop belongs to parent ponent (app-conmponent), and it renders N number of child ponents (server-whatever), passing a prop
element
=== each element of the array from parent ponent. The view belongs to parent ponent, so it can use data only from parent script. – Egor Stambakio Commented Jun 13, 2017 at 12:44
1 Answer
Reset to default 8In angular, when you write a directive preceded by an aserisk that is actually syntactic sugar for a more plex structure. For *ngFor
, the documentation gives this example:
<div *ngFor="let hero of heroes; let i=index; let odd=odd; trackBy: trackById" [class.odd]="odd">
({{i}}) {{hero.name}}
</div>
The *ngFor
is first rewritten to a template
attribute:
<div template="ngFor let hero of heroes; let i=index; let odd=odd; trackBy: trackById" [class.odd]="odd">
({{i}}) {{hero.name}}
</div>
Then the template
attribute is extracted out to an ng-template
directive wrapping the element that contained the original *ngFor
.
<ng-template ngFor let-hero [ngForOf]="heroes" let-i="index" let-odd="odd" [ngForTrackBy]="trackById">
<div [class.odd]="odd">({{i}}) {{hero.name}}</div>
</ng-template>
The same rewriting happens with your code:
<app-server-element
*ngFor="let serverElement of serverElements"
[element]="serverElement">
</app-server-element>
is actually just a shorthand for:
<ng-template ngFor let-serverElement [ngForOf]="serverElements">
<app-server-element [element]="serverElement"></app-server-element>
</ng-template>
From the expanded form of the ngFor
it should now be obvious that serverElements
is referenced entirely outside the app-server-element
ponent.
本文标签: javascriptHow exactly works the Angular *ngFor in this exampleStack Overflow
版权声明:本文标题:javascript - How exactly works the Angular *ngFor in this example? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743828615a2546109.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论