Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Routing in AngularJs with demo

    • 0
    • 1
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 374
    Comment on it

    AngularJs is basically used for the single page application with multiple views.

    For this we will be using ng-view directive and certain code of AngularJS to make it possible for you to make multiple view.

    Here is a code:

    HTML:

    1. <body ng-app="app">
    2. <ul>
    3. <li><a href="#/firstPage">First page</a></li>
    4. <li><a href="#/secondPage">Second page</a></li>
    5. <li><a href="#/thirdPage">Third page</a></li>
    6. </ul>
    7. <div ng-view></div ng-view>
    8. </body>

     

     

    Script:

    1. var app = angular.module('app', ['ngRoute']);
    2.  
    3. app.config(['$routeProvider',function($routeProvider) {
    4.  
    5. $routeProvider.
    6.  
    7. when('/' , {
    8.  
    9. templateUrl: 'templates/welcome.html',
    10. controller: 'first'
    11. }).
    12. when('/firstPage' , {
    13. templateUrl: 'templates/firstPage.html',
    14. controller: 'first'
    15. }).
    16. when('/secondPage' , {
    17. templateUrl: 'templates/secondPage.html',
    18. controller: 'second'
    19. }).
    20. when('/thirdPage' , {
    21. templateUrl: 'templates/thirdPage.html',
    22. controller: 'third'
    23. });;
    24. }]);

     

     

    These are the two script to add inside the head tag:

    1. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular.min.js"></script>
    2. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular-route.min.js"></script>

     

    Then finally we have to create a folder with templates name and add 3 HTML file naming:

    • firstPage.html
    • secondPage.html
    • thirdPage.html

     

    This is how we can make multiple views in our SPA.

    You can also download the demo attached. Hope this will help you.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: