Differences between revisions 4 and 5
Revision 4 as of 2015-06-07 12:30:01
Size: 619
Editor: PieterSmit
Comment:
Revision 5 as of 2015-06-08 10:00:43
Size: 646
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
 * Links Use in [[ionic]]

Angular js framework

  • Links Use in ionic

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

    • ng-controller directive defines the application controller.

      • controller invoked with a $scope object

    • 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)