填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

NgForOf

A structural directive that renders a template for each item in a collection. The directive is placed on an element, which becomes the parent of the cloned templates.

查看"说明"...

参见

NgModule

选择器

属性

属性说明
@Input()
ngForOf: NgIterable<T>
Write-only.

The value of the iterable expression, which can be used as a template input variable.

@Input()
ngForTrackBy: TrackByFunction<T>

A function that defines how to track changes for items in the iterable.

When items are added, moved, or removed in the iterable, the directive must re-render the appropriate DOM nodes. To minimize churn in the DOM, only nodes that have changed are re-rendered.

By default, the change detector assumes that the object instance identifies the node in the iterable. When this function is supplied, the directive uses the result of calling this function to identify the item node, rather than the identity of the object itself.

The function receives two inputs, the iteration index and the node object ID.

@Input()
ngForTemplate: TemplateRef<NgForOfContext<T>>
Write-only.

A reference to the template that is stamped out for each item in the iterable.

参见:

说明

The ngForOf directive is generally used in the shorthand form *ngFor. In this form, the template to be rendered for each iteration is the content of an anchor element containing the directive.

The following example shows the shorthand syntax with some options, contained in an <li> element.

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

The shorthand form expands into a long form that uses the ngForOf selector on an <ng-template> element. The content of the <ng-template> element is the <li> element that held the short-form directive.

Here is the expanded version of the short-form example.

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

Angular automatically expands the shorthand syntax as it compiles the template. The context for each embedded view is logically merged to the current component context according to its lexical position.

NgForOf 指令会为可迭代对象中的每一个条目实例化一个模板。实例化时的上下文环境来自其外部环境,它以当前正在迭代的条目作为循环变量。

When using the shorthand syntax, Angular allows only one structural directive on an element. If you want to iterate conditionally, for example, put the *ngIf on a container element that wraps the *ngFor element. For futher discussion, see Structural Directives.

Local variables

NgForOf provides exported values that can be aliased to local variables. For example:

局部变量

<li *ngFor="let user of userObservable | async as users; index as i; first as isFirst"> {{i}}/{{users.length}}. {{user}} <span *ngIf="isFirst">default</span> </li>
      
      <li *ngFor="let user of userObservable | async as users; index as i; first as isFirst">
   {{i}}/{{users.length}}. {{user}} <span *ngIf="isFirst">default</span>
</li>
    

NgForOf 导出了一系列值,可以指定别名后作为局部变量使用:

The following exported values can be aliased to local variables:

  • $implicit: T:迭代目标(绑定到ngForOf)中每个条目的值。

    $implicit: T: The value of the individual items in the iterable (ngForOf).

  • ngForOf: NgIterable<T>:迭代表达式的值。当表达式不局限于访问某个属性时,这会非常有用,比如在使用 async 管道时(userStreams | async)。

    ngForOf: NgIterable<T>: The value of the iterable expression. Useful when the expression is more complex then a property access, for example when using the async pipe (userStreams | async).

  • index: number:可迭代对象中当前条目的索引。

    index: number: The index of the current item in the iterable.

  • first: boolean:如果当前条目是可迭代对象中的第一个条目则为 true

    first: boolean: True when the item is the first item in the iterable.

  • last: boolean:如果当前条目是可迭代对象中的最后一个条目则为 true

    last: boolean: True when the item is the last item in the iterable.

  • even: boolean:如果当前条目在可迭代对象中的索引号为偶数则为 true

    even: boolean: True when the item has an even index in the iterable.

  • odd: boolean:如果当前条目在可迭代对象中的索引号为奇数则为 true

    odd: boolean: True when the item has an odd index in the iterable.

变更的传导机制

Change propagation

当迭代器的内容变化时,NgForOf 会对 DOM 做出相应的修改:

When the contents of the iterator changes, NgForOf makes the corresponding changes to the DOM:

  • 当新增条目时,就会往 DOM 中添加一个模板实例。

    When an item is added, a new instance of the template is added to the DOM.

  • 当移除条目时,其对应的模板实例也会被从 DOM 中移除。

    When an item is removed, its template instance is removed from the DOM.

  • 当条目集被重新排序时,他们对应的模板实例也会在 DOM 中重新排序。

    When items are reordered, their respective templates are reordered in the DOM.

Angular 使用对象标识符(对象引用)来跟踪迭代器中的添加和删除操作,并把它们同步到 DOM 中。 这对于动画和有状态的控件(如用来接收用户输入的 <input> 元素)具有重要意义。添加的行可以带着动画效果进来,删除的行也可以带着动画效果离开。 而未变化的行则会保留那些尚未保存的状态,比如用户的输入。

Angular uses object identity to track insertions and deletions within the iterator and reproduce those changes in the DOM. This has important implications for animations and any stateful controls that are present, such as <input> elements that accept user input. Inserted rows can be animated in, deleted rows can be animated out, and unchanged rows retain any unsaved state such as user input. For more on animations, see Transitions and Triggers.

即使数据没有变化,迭代器中的元素标识符也可能会发生变化。比如,如果迭代器处理的目标是通过 RPC 从服务器取来的, 而 RPC 又重新执行了一次。那么即使数据没有变化,第二次的响应体还是会生成一些具有不同标识符的对象。Angular 将会清除整个 DOM, 并重建它(就仿佛把所有老的元素都删除,并插入所有新元素)。这是很昂贵的操作,应该尽力避免。

The identities of elements in the iterator can change while the data does not. This can happen, for example, if the iterator is produced from an RPC to the server, and that RPC is re-run. Even if the data hasn't changed, the second response produces objects with different identities, and Angular must tear down the entire DOM and rebuild it (as if all old elements were deleted and all new elements inserted).

要想自定义默认的跟踪算法,NgForOf 支持 trackBy 选项。 trackBy 接受一个带两个参数(indexitem)的函数。 如果给出了 trackBy,Angular 就会使用该函数的返回值来跟踪变化。

To avoid this expensive operation, you can customize the default tracking algorithm. by supplying the trackBy option to NgForOf. trackBy takes a function that has two arguments: index and item. If trackBy is given, Angular tracks changes by the return value of the function.

静态方法

Asserts the correct type of the context for the template that NgForOf will render.

static ngTemplateContextGuard<T>(dir: NgForOf<T>, ctx: any): ctx is NgForOfContext<T>
      
      static ngTemplateContextGuard<T>(dir: NgForOf<T>, ctx: any): ctx is NgForOfContext<T>
    
参数
dir NgForOf
ctx any
返回值

ctx is NgForOfContext<T>

The presence of this method is a signal to the Ivy template type-check compiler that the NgForOf structural directive renders its template with a specific context type.

方法

Applies the changes when needed.

ngDoCheck(): void
      
      ngDoCheck(): void
    
参数

没有参数。

返回值

void