AngularJS Routing Example
Routing is one of the main feature of AngularJS. Use routing, we can create Single Page Application (SPA). The ngRoute module routes our application to… Read More »AngularJS Routing Example
Routing is one of the main feature of AngularJS. Use routing, we can create Single Page Application (SPA). The ngRoute module routes our application to… Read More »AngularJS Routing Example
Validations is ensures the data submitted by the user is in correct and expected format. Validations can be done both Client-side using Javascript and Server-side… Read More »AngularJS Create Form Validations
Forms are the fundamental elements of any web application which involves user inputs. Forms are used when we want to accept some data from users… Read More »AngularJS Create Web Forms
AngularJS $http Service: Using $http service in AngularJS we can communicate with Web APIs, post data and get response from remote HTTP servers. $http service… Read More »AngularJS Using $http Service
AngularJS services are set of functions that performs a specific tasks. AngularJS has several inbuilt services like $http, $location, $scope, $rootScope. Inbuilt services generally starts… Read More »AngularJS Services
AngularJS ng-repeat Directive: ng-repeat directive in AngularJS is used when we want to print all the items in an array or collection. It is useful… Read More »AngularJS ng-repeat Directive
AngularJS Filters Filters in AngularJS are used to filter and format data displayed on the View. They can be used in view, controllers and services… Read More »AngularJS Filters