Book Image

Introducing AngularJS [Video]

By : Mathieu Chauvinc
Book Image

Introducing AngularJS [Video]

By: Mathieu Chauvinc

Overview of this book

<p>AngularJS is a Google-backed JavaScript framework that simplifies the development of single-page applications and other web page JavaScript widgets. It is one of several modern frameworks that are revolutionizing web development by bringing a fresh, more professional orientation to application building. Developers will love working with the framework, which allows them to focus their time on actual logic, instead of having to deal with repetitive tasks such as rendering and event binding.</p> <p>Introducing AngularJS will show you how to build a complete application in a very short time, yet without cutting corners that would be detrimental to code quality. We will take you through a concrete application, a movie library app, one step at a time, in order to introduce the concepts behind all the moving parts of an AngularJS application.</p> <p>We will start by quickly scaffolding an entire application’s structure using Yeoman. This will lay the foundations of our application in a well-structured manner. Then we'll focus on displaying data and allowing the user to interact with the application, and how can Angular help us handle rendering and events binding, so we can focus more on the app logic itself. We'll peek into templates and controllers, and will see how Angular’s declarative nature makes it obvious which element is in charge of which functionality.</p> <p>We will then introduce a second view to the application, and show how to handle routing between the two views, including reading parameters from the URL and how we can very quickly create new routes with the companion tool Yeoman.</p> <p>You will also learn how to load data from an API using AJAX, both from the same server as the app, as well as from an external source. Finally, we will close by introducing services that are Angular data-layer singleton objects as well as building a client-side data persistence using LocalStorage.</p> <p>Introducing AngularJS will guide you through all the aspects of an Angular application, start-to-finish, view logic to data layer and persistence. You will learn how Angular makes developers lives easier by taking care of rendering and event handling, giving you more time to focus on what you love: the actual logic of the app. With Yeoman, you will also guarantee the quick creation of new views, routes, and controllers, without ever having to create a file manually.</p> <h1>Style and Approach</h1> <p>The course uses a full fledged application, a movie library app as the leading example throughout the sections, starting from the creation of the code structure and continuously enhancing it while you learn about the various moving parts of an Angular application. This guarantees a step-by-step approach while keeping a good continuity through the course.</p>
Table of Contents (6 chapters)
Chapter 2
Controllers and Templates
Content Locked
Section 2
Displaying Data Dynamically
How to display data programmatically from JavaScript to the HTML template - Define data in the controller on the $scope variable - Declare data binding in the template using {{ }} - Declare data binding in the template using ng-bind