SoFunction
Updated on 2025-04-04

Complete example of loading function implemented by AngularJS using interceptor

This article describes the loading function implemented by AngularJS using an interceptor. Share it for your reference, as follows:

<!DOCTYPE html>
<html lang="zh-CN" ng-app="myApp">
 <head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <script src=""></script>
  <script src=""></script>
  <link rel="stylesheet" href="" rel="external nofollow" >
  <style type="text/css">
    .mask-loading .loading-icon {
      -webkit-animation: rotate 1s linear infinite;
      -o-animation: rotate 1s linear infinite;
      animation: rotate 1s linear infinite;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 30px;
      height: 30px;
      margin: -20px 0 0 -20px;
      border-width: 5px;
      border-style: solid;
      border-color: #37c3aa #37c3aa #fff #fff;
      opacity: .9;
      border-radius: 20px;
    }
    @-webkit-keyframes rotate{
     0% {-webkit-transform:rotate(0)}
     100% {-webkit-transform:rotate(360deg)}
    }
    @keyframes rotate{
     0% {transform:rotate(0)}
     100% {transform:rotate(360deg)}
    }
    .mask-loading {
     position:fixed;
     top:0;
     right:0;
     bottom:0;
     left:0;
     background:0 0;
     z-index:9999;
    }
  </style>
  <script type="text/javascript" src=""></script>
  <script type="text/javascript" src=""></script>
  <script type="text/javascript">
   var myApp = ('myApp', ['', 'ngAnimate']);
   (["$stateProvider", "$httpProvider", '$urlRouterProvider', function ($stateProvider, $httpProvider, $urlRouterProvider) {
     $stateProvider
     .state('a', {
       url: '/a',
       templateUrl: "loadpath/",
       controller: "aController"
     })
     .state('b', {
       url: '/b',
       templateUrl: "loadpath/",
       controller: "bController"
     });
     $('/');
     $('myInterceptor');
   }]);
   //loading
   ('myInterceptor', ["$rootScope", function ($rootScope) {
     var timestampMarker = {
       request: function (config) {
         $ = true;
         return config;
       },
       response: function (response) {
        $ = false;
         return response;
       }
     };
     return timestampMarker;
   }]);
   ('aController', function($scope) {
    $ = "a";
   });
   ('bController', function($scope) {
    $ = "b";
   });
  </script>
 </head>
 <body>
  <h1>index</h1>
  <div  class="mask-loading" ng-if="loading" style="background-color: rgba(0, 0, 0, 0.17);">
    <div class="loading-icon"></div>
  </div>
  <div ui-view></div>
  <a ui-sref="a">go to </a>
  <br/>
  <a ui-sref="b">go to </a>
 </body>
</html>

For more information about AngularJS, readers who are interested in view the topic of this site:Summary of AngularJS command operation skills》、《AngularJS Introduction and Advanced Tutorial"and"AngularJS MVC architecture summary

I hope this article will be helpful to everyone's AngularJS programming.