JS模式之简单的订阅者和发布者模式完整实例


Posted in Javascript onJune 30, 2015

本文实例讲述了JS模式之简单的订阅者和发布者模式。分享给大家供大家参考。具体如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>parten</title>
</head>
<body>
<script>
var singletonTest = SingletonTest.getInstance({
  pointX : 5
});
console.log(singletonTest.pointX);
//easy_Observer_model;
function ObserverList(){
  this.observerList = [];
};
ObserverList.prototype.Add = function(obj){
  return this.observerList.push(obj);
};
ObserverList.prototype.Empty = function(){
  this.observerList = [];
};
ObserverList.prototype.Count = function(){
  return this.observerList.length;
};
ObserverList.prototype.Get = function(index){
  if(index>-1 && index<this.observerList.length)
  return this.observerList[index];
};
ObserverList.prototype.Insert = function(obj,index){
  var pointer = -1;
  if(index == 0){
    this.observerList.unshift(obj);
    pointer = index;
  }else if(index == this.observerList.length){
    this.observerList.push(obj);
    pointer = index;
  };
  return pointer;
};
ObserverList.prototype.IndexOf = function(obj,startIndex){
  var i = startIndex, pointer = -1;
  while(i < this.observerList.length){
    if(this.observerList[i] === obj){
      pointer = i;
    };
    i++
  };
  return pointer;
};
ObserverList.prototype.RemoveIndexAt = function(index){
  if(index === 0){
    this.observerList.shift();
  }else if(index === this.observerList.length-1){
    this.observerList.pop();
  };
  return index;
};
function extend(obj,extension){
  for(var key in obj){
    extension[key] = obj[key];
  }
};
//
function Subject(){
  this.observers = new ObserverList();
};
Subject.prototype.AddObserver = function(obj){
  this.observers.add(obj)
};
Subject.prototype.RemoveObserver = function(observer){
  this.observers.removeIndexAt( this.observers.IndexOf(observer,0) );
};
Subject.prototype.Notify = function(context){
  var observerCount = this.observers.count();
  for(var i=0; i<observerCount; i++){
    this.observers.Get(i).update(context);
  };
}
//Pubsub//subscribe
var Pubsub = {};
(function(q){
  var topics = [],
    subUid = -1;
  q.publish = function(topic,args){
    if(!topics[topic]){
      return false;
    };
    var subscribers = topics[topic],
      len = subscribers ? subscribers.length : 0;
    while(len--){
      subscribers[len].func(topic,args);
    }
    return this;
  };
  q.subscribe = function(topic,func){
    if(!topics[topic]){
      topics[topic] = [];
    };
    var token = (++subUid).toString();
    topics[topic].push({
      token : token,
      func : func
    });
    return token;
  };
  q.unsubscribe = function(token){
    for(var m in topics){
      if(topics[m]){
        for(var i=0; i<topics[m].length; i++){
          if(topics[m][i].token === token){
            topics[m].splice(i,1);
            return token;
          }
        }
      };
    };
    return this;
  }
})(pubsub);
</script>
</body>
</html>

希望本文所述对大家的javascript程序设计有所帮助。

Javascript 相关文章推荐
经典海量jQuery插件 大家可以收藏一下
Feb 07 Javascript
使用JavaScript 编写简单计算器
Nov 24 Javascript
javascript正则表达式使用replace()替换手机号的方法
Jan 19 Javascript
JavaScript数据结构和算法之二叉树详解
Feb 11 Javascript
jQuery中slideUp 和 slideDown 的点击事件
Feb 26 Javascript
BootstrapValidator超详细教程(推荐)
Dec 07 Javascript
JS去掉字符串末尾的标点符号及删除最后一个字符的方法
Oct 24 Javascript
Vue2.0学习之详解Vue 组件及父子组件通信
Dec 12 Javascript
vue2.0 使用element-ui里的upload组件实现图片预览效果方法
Sep 04 Javascript
Vue 用Vant实现时间选择器的示例代码
Oct 25 Javascript
jquery实现聊天机器人
Feb 08 jQuery
JavaScript函数重载操作实例浅析
May 02 Javascript
JS模式之单例模式基本用法
Jun 30 #Javascript
js简单工厂模式用法实例
Jun 30 #Javascript
JavaScript判断undefined类型的正确方法
Jun 30 #Javascript
超赞的动手创建JavaScript框架的详细教程
Jun 30 #Javascript
JavaScript中Null与Undefined的区别解析
Jun 30 #Javascript
jQuery结合AJAX之在页面滚动时从服务器加载数据
Jun 30 #Javascript
深入探究使JavaScript动画流畅的一些方法
Jun 30 #Javascript
You might like
深入理解PHP之数组(遍历顺序)  Laruence原创
2012/06/13 PHP
PHP使用CURL获取302跳转后的地址实例
2014/05/04 PHP
php实现读取内存顺序号
2015/03/29 PHP
php常用表单验证类用法实例
2015/06/18 PHP
简单的自定义php模板引擎
2016/08/26 PHP
JQuery 表单中textarea字数限制实现代码
2009/12/07 Javascript
基于jQuery实现的Ajax 验证用户名是否存在的实现代码
2011/04/06 Javascript
jquery 列表双向选择器之改进版
2013/08/09 Javascript
JavaScript中的Function函数
2015/08/27 Javascript
JavaScript Split()方法
2015/12/18 Javascript
AngularJs 60分钟入门基础教程
2016/04/03 Javascript
Bootstrap项目实战之子栏目资讯内容
2016/04/25 Javascript
Vue.JS入门教程之自定义指令
2016/12/08 Javascript
angular.js中解决跨域问题的三种方式
2017/07/12 Javascript
详解Vue路由History mode模式中页面无法渲染的原因及解决
2017/09/28 Javascript
Vue分页器实现原理详解
2019/06/28 Javascript
Vue实例的对象参数options的几个常用选项详解
2019/11/08 Javascript
vue使用swiper实现中间大两边小的轮播图效果
2019/11/24 Javascript
Python 字符串定义
2009/09/25 Python
python中enumerate函数遍历元素用法分析
2016/03/11 Python
Python常用时间操作总结【取得当前时间、时间函数、应用等】
2017/05/11 Python
详谈python http长连接客户端
2017/06/12 Python
Python编程实现的简单Web服务器示例
2017/06/22 Python
Linux(Redhat)安装python3.6虚拟环境(推荐)
2018/05/05 Python
Python实现判断一个整数是否为回文数算法示例
2019/03/02 Python
Python使用Beautiful Soup爬取豆瓣音乐排行榜过程解析
2019/08/15 Python
Python模块future用法原理详解
2020/01/20 Python
Keras 加载已经训练好的模型进行预测操作
2020/06/17 Python
html5 canvas绘制放射性渐变色效果
2018/01/04 HTML / CSS
html5 canvas-1.canvas介绍(hello canvas)
2013/01/07 HTML / CSS
html5将图片转换成base64的实例代码
2016/09/21 HTML / CSS
配件采购员岗位职责
2013/12/03 职场文书
学生党员批评与自我批评
2014/10/15 职场文书
介绍信如何写
2015/01/31 职场文书
Python机器学习之基于Pytorch实现猫狗分类
2021/06/08 Python
新的CSS 伪类函数 :is() 和 :where()示例详解
2022/08/05 HTML / CSS