最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Do I use NgFor or NgForOf? - Stack Overflow

programmeradmin2浏览0评论

In the angular API documentation it says to use NgForOf instead of NgFor with version 4.0 onwards. But the Fundamentals, and Heroes tutorial, documentation demonstrateNgFor, and make no mention of NgForOf.

Is there anyone who can clarify this for me? Thank you in advance.

In the angular API documentation it says to use NgForOf instead of NgFor with version 4.0 onwards. But the Fundamentals, and Heroes tutorial, documentation demonstrateNgFor, and make no mention of NgForOf.

Is there anyone who can clarify this for me? Thank you in advance.

Share Improve this question asked Jul 4, 2017 at 14:50 user6536435user6536435 1
  • 1 *ngFor is the sugar-coated version of ngForOf (stackoverflow./questions/43388893/…) and as you've said it appears that *ngFor is now deprecated so it is better to use ngForOf – eko Commented Jul 4, 2017 at 14:55
Add a ment  | 

3 Answers 3

Reset to default 8

They just renamed the class. NgForOf is the new class, NgFor is now only an alias and will go away eventually. https://github./angular/angular/blob/09d9f5fe54e7108c47de61393e10712f8239d824/packages/mon/src/directives/ng_for_of.ts#L205

This only affects you if you are using a reference to the NgFor class in your code. The directive is imported using the CommonModule. The selector is unchanged, therefore if you are only using ngFor in your template, nothing will change.

ngForOf is the name of the class that implements the *ngFor directive. Its was the class type that changed (from ngFor to ngForOf) not the directive itself. So in our templates we still use *ngFor.

The difference I see

[NgForOf] is used to assign a source value into a target within any tag. ngForOf is a prop of NgFor class. In ngForOf we assign our array to iterate. ngForOf : NgIterable

[ngFor] doesn't require a type. Using this will mean the prop NgForOf is ngForOf : any

发布评论

评论列表(0)

  1. 暂无评论