角度4 ngForOf

时间:2017-09-25 06:03:02

标签: angular ngfor ng-container

从Angular 4 NgFor is Deprecated开始。

我可以看到他们已将nodemon({ // script goes here. }).on('restart', your_reload_logic) NgFor

相关联
  

https://github.com/angular/angular/blob/09d9f5fe54e7108c47de61393e10712f8239d824/packages/common/src/directives/ng_for_of.ts#L205

他们也有syntax for NgForOf,类似于NgFor。

NgForOf

使用<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li> <li template="ngFor let item of items; index as i; trackBy: trackByFn">...</li>

<ng-template>

我正在使用 NgContainer 而不是 NgTemplate ,它仍然可以像下面那样完美地用于 NgFor

<ng-template ngFor let-item [ngForOf]="items" let-i="index" [ngForTrackBy]="trackByFn">
  <li>...</li>
</ng-template>

NgContainer中NgForOf的正确用法是什么?

我也无法在文档中看到 NgForOf 与NgContainer的正确语法用法。

如果问题不明确,将根据要求更新。

0 个答案:

没有答案