我正在尝试创建一个简单的加载器。以下是我到目前为止所做的工作。有人可以看看,让我知道我哪里出错了吗?
似乎未添加CSS样式loading style-2
。我的DOM只显示:
<span class=""></span>
我的指示:
angular.module('loaderModule', [
'restangular',
])
.controller('appLoaderController', ['$scope', function ($scope) {
$scope.$on('LOAD', function () {
$scope.loading = "loading style-2"
});
$scope.$on('UNLOAD', function () {
$scope.loading = ""
});
}])
.directive('spinLoader', function() {
return {
restrict: 'E',
transclude: true,
template: '<span class="{{ loading }}"></span><div ng-transclude ></div>'
};
});
的 HTML: 的
<spin-loader>
<div ui-view></div>
</spin-loader>
然后我通过调用$scope.$emit('LOAD')
答案 0 :(得分:1)
我会在你的指令中使用ng-class:
app.directive('spinLoader', function() {
return {
restrict: 'E',
transclude: true,
template: '<div ng-class="{loading: isLoading, style2: isLoading}" ng-transclude></div>'
};
});
然后,在您的控制器中,您可以将$scope.isLoading
设置为true或false。
app.controller('Ctrl', function ($scope) {
var dummyLoadingVariable = false;
$scope.$on('LOAD', function () {
$scope.isLoading = true;
});
$scope.$on('UNLOAD', function () {
$scope.isLoading = false;
});
$scope.toggleLoading = function(){
dummyLoadingVariable = !dummyLoadingVariable;
if(dummyLoadingVariable){
$scope.$emit('LOAD');
} else {
$scope.$emit('UNLOAD')
}
}
});
用HTML来测试它:
isLoading: {{ isLoading }}
<br/>
<spin-loader>
<div ui-view>Transcluded</div>
</spin-loader>
<br/>
<button ng-click="toggleLoading()">toggleLoading()</button>
这是一个正在运行的Plunk:http://plnkr.co/edit/SetecF03aY6TnQilryWt?p=preview