码迷,mamicode.com
首页 > 其他好文 > 详细

职责链模式

时间:2017-11-13 19:43:29      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:log   prot   set   arguments   error   null   char   ext   add   

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8" />
	
	<meta http-equiv="X-UA-Compatible" content="ie=edge" />
	<title>Document</title>
</head>
<body>
	<div class="box">
	
	</div>
</body>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
		//职责链
		
		var Chain = function(fn){
			this.fn = fn;
			this.success = null;
			this.error = null;
		}
		
		Chain.prototype.addNext = function(fn){
			return this.success = fn;
		}
		
		Chain.prototype.reuqest = function(){
			this.fn.apply(this,arguments);
		}
		Chain.prototype.next = function(){
			return this.success && this.success.reuqest();
		}
     	
     	
     	var fn1 = new Chain(function(){
     		console.log("1");
     		this.next();
     	});
     	
     	var fn2 = new Chain(function(){
     		console.log("2");
     		this.next();
     	});
     	var fn3 = new Chain(function(){
     		console.log("3");
     	});
     	
     	fn1.addNext(fn2).addNext(fn3);
     	
     	fn1.reuqest();
</script>
</html>

  

职责链模式

标签:log   prot   set   arguments   error   null   char   ext   add   

原文地址:http://www.cnblogs.com/muamaker/p/7827616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!