Diese Präsentation wurde erfolgreich gemeldet.
Die SlideShare-Präsentation wird heruntergeladen. ×

AngularJS is awesome

Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Nächste SlideShare
Angular js tutorial slides
Angular js tutorial slides
Wird geladen in …3
×

Hier ansehen

1 von 34 Anzeige

Weitere Verwandte Inhalte

Diashows für Sie (20)

Anzeige

Ähnlich wie AngularJS is awesome (20)

Aktuellste (20)

Anzeige

AngularJS is awesome

  1. 1. AngularJS is awesome! Eusebiu Schipor - Frontend Developer
  2. 2. http://angularjs.org
  3. 3. AngularJS: • Is a client-side MVW JavaScript framework for writing single page web applications. • It's built and mantained by Google. • Help us building testable web applications that scale. • It lets you use HTML as your template language and lets you extend HTML's syntax to express your application's components clearly and succinctly. • The unique and innovative features are two-way-data bindings, dependency injection, easy-to-test code and extending the HTML dialect by using directives.
  4. 4. Some key features of the Angular JS in web development: • Two way data binding • MVC framework • Templating • Custom-directive (reusable components) • REST-friendly • Set up a link for any dynamic page • Form Validation • Server Comunication • Localization • Dependency injection • Full testing environment • AngularJS can do everything that jQuery does and much more, yet is roughly equivalent in download size
  5. 5. AngularJS vs jQuery jQuery AngularJS Restful API NO YES Integration test runner NO YES MVC support NO YES Template NO YES Two way data binding NO YES Dependency injection NO YES AJAX YES YES Cross Module Communication YES YES Unit test runner YES YES Form validation NO YES Localization NO YES File size 32 kb 38 kb
  6. 6. Model-View-Controller Architecture
  7. 7. Single Page Applications (SPA) • In a Single Page Application (SPA), either all necessary code (HTML, CSS, JavaScript) is retrieved with a single page load. • Appropiate resources are dynamically loaded and added to the page as necessary, ussually in response to user actions. • The page does not reload at any point in the process. • Interaction with the single page application often involves dynamic communication with the web server behind the scenes. • SPAs are backe-end independent, and we only care about the JSON data coming back, be it from JAVA, .NET, PHP or any other server-side language.
  8. 8. Main components of AngularJS: • Directives - HTML annotations that trigger JavaScript behaviors • Modules - Where our application components live • Controllers - Where we add application behavior • Expressions - How values get displayed within the page
  9. 9. Getting started
  10. 10. Modules • We can think of a module as a container for the different parts of your app – controllers, services, filters, directives, etc. • A container for different parts of application • Modules can have other modules as dependencies
  11. 11. Creating a module
  12. 12. Controllers • An Angular Controller allows us to interact with a View and Model, it's the place where presentational logic can take place to keep the UI bindings in sync with the Model.
  13. 13. Dependency injection When MyController is created by AngularJS, the $scope and instances of dep1 and dep2 are automatically passed in. This eliminates the need for hard-coding dependencies with global variables or creating instances manually within the component, which greatly complicates and limits testability.
  14. 14. Expressions • Allow you to insert dynamic values into your HTML. • AngularJS expressions are written inside double braces: {{expression}} • Binds data to HTML the same way as the ng-bind directive, and output the data exactly were the directive is written. • They are used for small calculations only or getting the value of $scope properties.
  15. 15. $scope • Every controller has an associated $scope object. • $scope is an object that refers to the application model • In the Model-View-Controller structure, the $scope object becomes the model. • We only use $scope inside Controllers, where we bind data from the Controller to the View.
  16. 16. Views
  17. 17. Directives AngularJS extends HTML through use of directives, a feature that allows you to create your own HTML elements. - ng-app directive initializes an AngularJS application. - ng-init directive initializes application data. - ng-click directive allows you to specify custom behavior when an element is clicked
  18. 18. Using directives _
  19. 19. Custom Directives
  20. 20. Using filters • A filter formats the value of an expression for display to the user. They can be used in view templates, controllers or services and it is easy to define your own filter.
  21. 21. Two-way Data Binding • Data-binding is an automatic way of updating the view whenever the model changes, as well as updating the model whenever the view changes.
  22. 22. AngularJS form validation • There are many form validation directives available in AngularJS:
  23. 23. Creating templates
  24. 24. $http Service The $http service is a core Angular service that facilitates communication with the remote HTTP servers via the browser's XMLHttpRequest object or via JSONP.
  25. 25. Custom services • We can define our own custom services in AngularJS apps and use them wherever required. • There are several ways to declare AngularJS service within application. Following are two simple ways:
  26. 26. The Role of Factories
  27. 27. AngularJS routing • Since we are making a single page application and we don’t want any page refreshes, we’ll use Angular’s routing capabilities.
  28. 28. Defining routes
  29. 29. Pain Points • Angular Expressions are used extensively in the View layer of Angular. • It lets the developer use complicated logic and even perform assignment operations and calculations, all inside the view templates • Putting logic inside the templates makes it harder to test, sometimes impossible to test.
  30. 30. Summary • AngularJS provides a robust “SPA” framework for bulding robust client-side applications. • Key features: • Directives and filters • Two-way data binding • Views, Controllers, Scope • Modules and Routes
  31. 31. Resources • http://angularjs.org • http://builtwith.angularjs.org • http://angular-ui.github.io • http://mgcrea.github.io/angular-strap • http://pluralsight.com

×