IT:Angular.JS:HowTo:Understand/Binding to Arrays
Summary
In The Basics we already touched on the basics of binding to arrays.
Notes
A recap of where we got to:
- Arrays can be Filtered → Ordered → Projected.
- use the
data-ng-repeat=attribute, then use pipe syntax pass throughorderBy:, etc. - We desire our UI to update upon changes to the the array.
Here are some examples:
Let's continue…