gpt4 book ai didi

javascript - ng-class 不会触发自定义指令

转载 作者:可可西里 更新时间:2023-11-01 02:33:39 25 4
gpt4 key购买 nike

我目前正在开发 slide menu directive对于 AngularJS。 javascript 由三种类型的指令组成:每种类型的滑动菜单的指令(为简洁起见,我只包括左侧滑动菜单),一个用于屏幕其余部分的包装器指令,asmWrapper,以及一个控制按钮指令,asmControl。目前,所有这些指令都使用服务 asmService 进行通信。

当用户单击 asmControl 时,该指令的 Controller 调用 asmService 上的一个方法来确定触发了哪个菜单,并在 $rootScope 上发出“asmEvent”。 asmSlidingMenu 的 Controller 将捕获该事件并更新其范围内的事件变量,但 DOM 元素的 CSS 类保持不变。

我假设 ng-class 没有被设置。我该如何解决这个问题?

我在下面包含了 asmSlidingMenu 指令的代码。要查看更完整的示例,请查看 Plunker我做了。

slideMenu.directive('asmSlideLeft', ['$rootScope', 'asmService', 
function($rootScope, asmService) {
return {
restrict: 'AEC'
, scope: {}
, controller: function($scope) {
$rootScope.$on('asmEvent', function(event, prop) {
console.log('Intercepted: ' + asmService.asmStates.slideLeft.active);
$scope.active = asmService.asmStates.slideLeft.active;
});
}
, compile: function(element, attrs) {
attrs.$set('class', 'asm asm-horizontal asm-left');
attrs.$set('data-ng-class', '{"asm-left-open: active"}');
return {
pre: function preLink(scope, iElement, iAttrs) {}
, post: function postLink(scope, iElement, iAttrs) {}
}
}
}
}]);

最佳答案

首先 active 处于隔离范围内,因此 ng-class 无法访问它。

其次,更重要的是,元素的指令被angular收集后,添加了ng-class。太晚了。

如果您有自己的指令,则没有理由使用 ng-class

slideMenu.directive('asmSlideLeft', ['$rootScope', 'asmService',
function($rootScope, asmService) {
return {
restrict: 'AEC'
...
link: function(scope, element) {
element.addClass('asm asm-horizontal asm-left');
$rootScope.$on('asmEvent', function() {
if (asmService.asmStates.slideLeft.active) {
element.addClass('asm-left-open');
}
else {
element.removeClass('asm-left-open');
}
...

关于javascript - ng-class 不会触发自定义指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23304673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com