AngularJS使用拦截器实现的loading功能完整实例

<!DOCTYPE html> <html lang="zh-CN" ng-app="myApp"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1"> <script src="https://www.jb51.net/jquery.min.js"></script> <script src="https://www.jb51.net/angular.js"></script> <link href="https://www.jb51.net/bootstrap.min.css" > <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="https://www.jb51.net/angular-ui-router.js"></script> <script type="text/javascript" src="https://www.jb51.net/angular-animate.js"></script> <script type="text/javascript"> var myApp = angular.module('myApp', ['ui.router', 'ngAnimate']); myApp.config(["$stateProvider", "$httpProvider", '$urlRouterProvider', function ($stateProvider, $httpProvider, $urlRouterProvider) { $stateProvider .state('a', { url: '/a', templateUrl: "loadpath/a.html", controller: "aController" }) .state('b', { url: '/b', templateUrl: "loadpath/b.html", controller: "bController" }); $urlRouterProvider.otherwise('https://www.jb51.net/'); $httpProvider.interceptors.push('myInterceptor'); }]); //loading myApp.factory('myInterceptor', ["$rootScope", function ($rootScope) { var timestampMarker = { request: function (config) { $rootScope.loading = true; return config; }, response: function (response) { $rootScope.loading = false; return response; } }; return timestampMarker; }]); myApp.controller('aController', function($scope) { $scope.page = "a"; }); myApp.controller('bController', function($scope) { $scope.page = "b"; }); </script> </head> <body> <h1>index</h1> <div ng-if="loading"> <div></div> </div> <div ui-view></div> <a ui-sref="a">go to a.html</a> <br/> <a ui-sref="b">go to b.html</a> </body> </html>

更多关于AngularJS相关内容感兴趣的读者可查看本站专题:《AngularJS指令操作技巧总结》、《AngularJS入门与进阶教程》及《AngularJS MVC架构总结

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wysdpx.html