Differences between revisions 2 and 3
Revision 2 as of 2015-06-06 11:52:03
Size: 490
Editor: PieterSmit
Comment: Add ng-repeat
Revision 3 as of 2015-06-06 12:06:15
Size: 564
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
   * '''ng-controller''' directive defines the application controller.
Line 7: Line 8:
     * {{ var }}      * { { var } }

Angular js framework

  • AngularJS extends HTML with ng-directives.
    • The ng-app directive defines an AngularJS application.

    • ng-controller directive defines the application controller.

    • The ng-model directive binds the value of HTML controls (input, select, textarea) to application data.

      • { { var } }
    • The ng-bind directive binds application data to the HTML view.

    • ng-repeat directive clones HTML elements once for each item in a collection (in an array).

...

Angular.js (last edited 2016-04-06 19:59:22 by PieterSmit)