我有一个微调器,显示为ng-show="loading>0"
有没有办法可以延迟显示这个微调器(比如1秒)?
我无法使用超时,因为多次请求卸载计数器将不同步。
我需要的是ng-show
通过css转换或类似的延迟
答案 0 :(得分:7)
我怀疑你正在寻找一个包含延迟的通用微调器。标准,显示在200ms
之类的东西之后。
这是指令的完美候选者,实际上很容易实现。
我知道这是一个很长的代码示例,但主要部分是指令。这很简单。
听一些范围变量并在一些可配置的延迟后显示。如果操作时间超过延迟,它将被取消并且永远不会显示。
(function() {
'use strict';
function SpinnerDirective($timeout) {
return {
restrict: 'E',
template: '<i class="fa fa-cog fa-spin"></i>',
scope: {
show: '=',
delay: '@'
},
link: function(scope, elem, attrs) {
var showTimer;
//This is where all the magic happens!
// Whenever the scope variable updates we simply
// show if it evaluates to 'true' and hide if 'false'
scope.$watch('show', function(newVal){
newVal ? showSpinner() : hideSpinner();
});
function showSpinner() {
//If showing is already in progress just wait
if (showTimer) return;
//Set up a timeout based on our configured delay to show
// the element (our spinner)
showTimer = $timeout(showElement.bind(this, true), getDelay());
}
function hideSpinner() {
//This is important. If the timer is in progress
// we need to cancel it to ensure everything stays
// in sync.
if (showTimer) {
$timeout.cancel(showTimer);
}
showTimer = null;
showElement(false);
}
function showElement(show) {
show ? elem.css({display:''}) : elem.css({display:'none'});
}
function getDelay() {
var delay = parseInt(scope.delay);
return angular.isNumber(delay) ? delay : 200;
}
}
};
}
function FakeService($timeout) {
var svc = this,
numCalls = 0;
svc.fakeCall = function(delay) {
numCalls += 1;
return $timeout(function() {
return {
callNumber: numCalls
};
}, delay || 50);
};
}
function MainCtrl(fakeService) {
var vm = this;
vm.makeCall = function(delay) {
vm.isBusy = true;
fakeService.fakeCall(delay)
.then(function(result) {
vm.result = result;
}).finally(function() {
vm.isBusy = false;
});
}
}
angular.module('spinner', [])
.service('fakeService', FakeService)
.controller('mainCtrl', MainCtrl)
.directive('spinner', SpinnerDirective);
}());
&#13;
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script>
<div class="container" ng-app="spinner">
<div class="row" ng-controller="mainCtrl as ctrl">
<div class="col-sm-12">
<h2>{{ctrl.result | json}}
<spinner show="ctrl.isBusy" delay="200"></spinner>
</h2>
<button type="button"
class="btn btn-primary"
ng-click="ctrl.makeCall(2000)"
ng-disabled="ctrl.isBusy">Slow Call
</button>
<button type="button"
class="btn btn-default"
ng-click="ctrl.makeCall()"
ng-disabled="ctrl.isBusy">Fast Call
</button>
</div>
</div>
</div>
&#13;
答案 1 :(得分:5)
这是一种更符合我需求的简单方法。根据您的操作,您可以将函数setDelay()
绑定到元素。例如,在我的情况下,我将setDelay()
绑定到选择输入。
触发HTML:
<select class="first-option"
ng-change="setDelay()"
ng-options="o.label for o in download.options"
ng-model="optionModel" required>
</select>
在您的控制器中,添加一个简单的函数setDelay
,它将更改标记$scope.delay
:
$scope.setDelay = function(){
$scope.delay = true;
$timeout(function(){
$scope.delay = false;
}, 200);
};
然后,你可以在ng-show中使用$scope.delay
作为标志:
<div class="loading-div" ng-show="delay">
<img src="loading_spinner.gif">
</div>
完成加载后显示内容:
<div ng-show="!delay">
Content is loaded.
</div>
现在,每次用户在下拉菜单中选择一个新值时,它都会触发$scope.delay
设置为true
,导致微调器显示,以及何时达到200
,它将被设置为false
,导致微调器隐藏。
答案 2 :(得分:2)
我认为纯CSS解决方案是最好的方法。
这是展示如何操作的plunker。使用ng-animate类进行转换并应用转换延迟,转换时间为10ms(0s转换不适用于css)。
代码的相关部分:
.your-element-class.ng-hide {
opacity: 0;
}
.your-element-class.ng-hide-add,
.your-element-class.ng-hide-remove {
transition: all linear 0.01s 1s;
}
使用自定义指令的唯一原因是在代码中使用这么多次具有不同的延迟值。自定义指令允许延迟时间更灵活。