Differences between revisions 10 and 11
Revision 10 as of 2016-04-03 19:25:17
Size: 1115
Editor: PieterSmit
Comment: Add link to web building 201604
Revision 11 as of 2016-04-06 19:59:22
Size: 1129
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
 * Links Use in [[ionic]] , [[http://stackoverflow.com/questions/14994391/thinking-in-angularjs-if-i-have-a-jquery-background?rq=1|angularjs-background]] , [[http://stackoverflow.com/questions/14049480/what-are-the-nuances-of-scope-prototypal-prototypical-inheritance-in-angularjs|prototypal inheritance]] , [[https://github.com/angular/angular.js/wiki/Understanding-Scopes|Understanding-Scopes]]  * Links Use in [[Angular2]] ,[[ionic]] , [[http://stackoverflow.com/questions/14994391/thinking-in-angularjs-if-i-have-a-jquery-background?rq=1|angularjs-background]] , [[http://stackoverflow.com/questions/14049480/what-are-the-nuances-of-scope-prototypal-prototypical-inheritance-in-angularjs|prototypal inheritance]] , [[https://github.com/angular/angular.js/wiki/Understanding-Scopes|Understanding-Scopes]]

Angular js framework

  • Links Use in Angular2 ,ionic , angularjs-background , prototypal inheritance , Understanding-Scopes

  • Angular.js/201604

  • Backend angular-meteor - live binding in the backend using mongodb.
  • 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)