Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, ASP.NET MVC, JavaScript, AngularJS, NodeJS, Ionic and Android
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

Understanding AngularJS Templates

Posted By : Shailendra Chauhan, 15 Sep 2014
Updated On : 15 Sep 2014
Total Views : 10,543   
 
Keywords : creating angular templates, dynamic templates in angularjs, static templates in angular, types of templates in angularjs

In Angular, templates are the views with the HTML enriched by Angular elements like directive and attributes. Templates are used to display the information from the model and controller that a user sees in his browser. An angular templates can have Directive, HTML markup, CSS, Filters, Expressions and Form controls.

A simple Angular Template

<html ng-app>
<body ng-controller="MyController">
 <input ng-model="name" value="dotnet-tricks.com">
 <br/>
 Input Value is : {{name}}
 <button ng-click="changeValue()">Click me!</button>
 <script src="angular.js">
 </body>
</html>

Types of Templates

There are two types of templates :

  1. Static Templates

    A static template is defined by using script tag. It must has an id attribute with a unique value and a type attribute with value text/ng-template. Also, a static template must be inside the scope of the ng-app directive otherwise it will be ignored by Angular.

     <script type="text/ng-template" id="person.html">
     {{person.name}} : {{person.address}}
     </script>
    

    A static template can be rendered by using ng-include directive.

    <div ng-include="'person.html'"></div> 

    Full Example of Static Template

    <!DOCTYPE html>
    <html>
    <head>
     <title>AngularJS Static Templates</title>
     <script src="lib/angular.js"></script>
     <script>
     //defining module
     var app = angular.module('app', []);
     app.controller("myController", function ($scope) {
     $scope.person = { name: "Deepak Chauhan", address: "Delhi" };
     });
     app.controller("homeController", function ($scope) {
     $scope.persons = [{ name: "Deepak Chauhan", address: "Delhi" }, { name: "Shailendra Chauhan", address: "Noida" }, { name: "Kuldeep Chauhan", address: "Gurgaon" }]
     });
     </script>
    </head>
    <body ng-app="app">
     <h1>AngularJS : Static Templates</h1>
     <!--It should be the part of ng-app directive-->
     <script type="text/ng-template" id="person.html">
     {{person.name}} : {{person.address}}
     </script>
     <div ng-controller="myController">
     <h1>myController</h1>
     <!--Please not the single quotes around person.html. The value of the ng-include is an expression and person.html is a string value, so put single quotes around it.-->
     <div ng-include="'person.html'"></div>
     </div>
     <div ng-controller="homeController">
     <h1>homeController</h1>
     <div ng-repeat="person in persons" ng-include="'person.html'"></div>
     </div>
    </body>
    </html>
    
  2. Dynamic Templates

    A dynamic template is an html page which is compiled and rendered by Angular on demand. The above static template can be created as a HTML page within templates folder of your app like as:

    person.html

    {{person.name}} : {{person.address}}

    A dynamic template can be rendered by using ng-include directive.

    <div ng-include="'templates/person.html'"></div>
    

    Full Example of Dynamic Template

    <!DOCTYPE html>
    <html>
    <head>
     <title>AngularJS Dynamic Templates</title>
     <script src="lib/angular.js"></script>
     <script>
     //defining module
     var app = angular.module('app', []);
     app.controller("myController", function ($scope) {
     $scope.person = { name: "Deepak Chauhan", address: "Delhi" };
     });
     app.controller("homeController", function ($scope) {
     $scope.persons = [{ name: "Deepak Chauhan", address: "Delhi" }, { name: "Shailendra Chauhan", address: "Noida" }, { name: "Kuldeep Chauhan", address: "Gurgaon" }]
     });
     </script>
    </head>
    <body ng-app="app">
     <h1>AngularJS : Dynamic Templates</h1>
     <div ng-controller="myController">
     <h1>myController</h1>
     <!--Please not the single quotes around person.html. The value of the ng-include is an expression and person.html is a string value, so put single quotes around it.-->
     <div ng-include="'templates/person.html'"></div>
     </div>
     <div ng-controller="homeController">
     <h1>homeController</h1>
     <div ng-repeat="person in persons" ng-include="'templates/person.html'"></div>
     </div>
    </body>
    </html>
    

    person.html

     {{person.name}} : {{person.address}}

Note

Always put the single quotes around the name of template with ng-include directive, since it accept an expression. Hence to indicate to Angular that template (person.html) is a string value you have to put single quotes around it's name.

What do you think?

I hope you will enjoy the AngularJS Templates while developing your app with AngularJS. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Cordova. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook