AngularJS 事件发布机制

前端之家收集整理的这篇文章主要介绍了AngularJS 事件发布机制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

问题描述

未读消息提醒

当器具用户或技术机构对非强检器具检校申请发布新的意见时,需要对对方进行消息通知

后台很简单,本文主要解决前台遇到的问题。

历史遗留

这是我的消息遗留下来的统计未读消息的指令,用到了缓存superCache

一眼看去应该能发现这个if...else的问题,第一次请求,将数据放到缓存里,之后就一直从缓存中取了,这肯定有问题啊!原来有1条消息,然后点击查看,然后这个指令仍然是从缓存中取的数据,还显示一条。

数量 if (typeof superCache.get('unReadMessageCount') === 'undefined') { // 获取当前用户的所有未读收件消息 ToMessageService.pageReceiveUnReadMessageOfCurrentUser(undefined,function(data) { // 存入缓存 superCache.put('unReadMessageCount',data.totalElements); // 显示文本信息 element.text(superCache.get('unReadMessageCount')); }); } else { // 显示文本信息 element.text(superCache.get('unReadMessageCount')); } } }; });

功能实现

注销时清除缓存

注销时如果不清除缓存,下一个用户登录时用的就是上一用户留下来的缓存,造成信息提示错误

阅读时重新执行指令

下图就是该实现的难点。

用户有一条未读消息,当用户点击阅读这条消息时,将该消息的状态设置为已读,然后右上角的未读条数同时修改。但是点击这个事件是发生在控制器中,而消息又是一个额外的指令,两者毫无联系。

AngularJS的精髓就是Scope,这是两个Scope页面内容是我们的控制器Scope,右上角的消息处是我们的未读消息指令Scope

如若是简单的父子Scope关系,我们可以从控制器传参数到指令,指令watch这个参数,根据控制器对参数的变动让指令做出响应。但是这两个Scope毫无关系,我们怎么办呢?

事件发布

查阅了相关资料,AngularJSScope可以发布事件。

$broadcast(name,args);

Dispatches an event name downwards to all child scopes (and their children) notifying the registered $rootScope.Scope listeners.

向下分发一个事件给他的所有子Scope通知注册Scope

$emit(name,args);

Dispatches an event name upwards through the scope hierarchy notifying the registered $rootScope.Scope listeners.

$broadcast类似,只不过这个是用来向上发布事件的。

$on(name,listener);

Listens on events of a given type.

监听一个给定类型的事件。

实例说明angularjs $broadcast $emit $on的用法

//子级
//平级

js代码

appControllers.controller('ParentCtrl',function($scope) {
$scope.$on('to-parent',function(d,data) {
console.log(data); //父级能得到值
});
$scope.$on('to-child',data) {
console.log(data); //子级得不到值
});
});

appControllers.controller('ChildCtrl',function($scope){
$scope.$on('to-child',data) {
console.log(data); //子级能得到值
});
$scope.$on('to-parent',data) {
console.log(data); //父级得不到值
});
});

appControllers.controller('BroCtrl',function($scope){
$scope.$on('to-parent',data) {
console.log(data); //平级得不到值
});
$scope.$on('to-child',data) {
console.log(data); //平级得不到值
});
});

点击Click me的输出结果

child parent

代码实现

$rootScope

考虑到这两个控制器与指令之间Scope的关系,无论是向上还是向下可能都接收不到。

这里直接用$rootScope向下发布事件,保证所有Scope都能获取到该事件。免得去考虑当前Scope与目的Scope之间的关系。

数量 $rootScope.$broadcast('reloadMessageCount');

因为考虑到各个层之间的职责关系,我认为:事件发布应该方法控制器中,而不应该放在Service中,Service就等着被别人调用,不应该与其他文件有耦合关系,否则改起来很难改。

$on

重构指令,使用$on监听事件发布,执行相应的逻辑重新显示右上角的未读消息数。

',// 元素 link: function postLink(scope) { var self = this;
    self.init = function() {
      self.computeMessageCount();
    };

    // 计算未读消息<a href="https://www.jb51.cc/tag/shuliang/" target="_blank" class="keywords">数量</a>
    self.computeMessageCount = function() {
      // 判断缓存中是否存在未读消息<a href="https://www.jb51.cc/tag/shuliang/" target="_blank" class="keywords">数量</a>
      if (angular.isUndefined(superCache.get('unReadMessageCount'))) {
        // <a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>当前<a href="https://www.jb51.cc/tag/yonghu/" target="_blank" class="keywords">用户</a>的所有未读收件消息
        ToMessageService.pageReceiveUnReadMessageOfCurrentUser(undefined,function(data) {
          // 存入缓存
          superCache.put('unReadMessageCount',data.totalElements);
          // <a href="https://www.jb51.cc/tag/xianshi/" target="_blank" class="keywords">显示</a>
          scope.count = superCache.get('unReadMessageCount');
        });
      } else {
        scope.count = superCache.get('unReadMessageCount');
      }
    };

    // 处理reloadMessageCount事件的处理逻辑
    scope.$on('reloadMessageCount',function() {
      // 清除缓存
      superCache.remove('unReadMessageCount');
      // 计算未读消息<a href="https://www.jb51.cc/tag/shuliang/" target="_blank" class="keywords">数量</a>
      self.computeMessageCount();
    });

    // 初始化
    self.init();
  }
};

});

内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/30691.html

猜你在找的JavaScript相关文章