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 ofngForOf
(stackoverflow./questions/43388893/…) and as you've said it appears that*ngFor
is now deprecated so it is better to usengForOf
– eko Commented Jul 4, 2017 at 14:55
3 Answers
Reset to default 8They 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