1、构造函数模式、混合模式、模块模式、工厂模式、单例模式、发布订阅模式的范例。
1、设计模式分类:
构造函数模式(constructor)
含义:创建一个构造函数1
2
3
4
5
6
7
8function Person(name,age){
this.name=name;
this.age=age;
}
Person.prototype.sayName=function(){
return this.name;
}
var student=new Person("Ethan",28);
工厂模式(factory)
含义:通常是一个函数return出来一个新的对象1
2
3
4
5
6
7
8
9
10
11
12
13
14
15function createPerson(name){
var person={
name: name,
sayName:function(){
return this.name;
}
}
return person;
}
createPerson("Ethan");
this回顾:
1、方法调用模式:createPerson("Ethan").sayName(); this指向person
2、函数调用模式: var t=createPerson("Ethan").sayName; this指向window
3、new构造对象:this指向新构造的对象
4、自动指向:apply,call,bind方法
单例模式(singleton)
含义:每次调用这个模式不会去创造,有且只有一个(例子:组件生成的对话框,一个页面只出现一次)1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19var People=(function(){
var instance;
function init(name){
return {
name: name
}
}
return {
createPeople:function(name){
if(!instance){
instance=init(name);
}
return instance;
}
}
})();
//函数作用域:词法作用域,js作用域由function所体现,function访问的上下文由它所在定义的位置所决定
People.createPeople("Ethan");
People.createPeople("age");
混合模式(mixin)
含义:对某个对象,增加新的东西(一般都用来混合它的原型)1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23function People(name,age){
this.name=name;
this.age=age;
}
People.prototype.sayName=function(){
console.log(this.name);
}
var Student=function(name,age,score){
People.call(this,name,age);
this.score=score;
}
//用原生js方法将student.prototype指向People
Student.prototype=create(People.prototype);
function create(parentObj){
function F(){}
F.prototype=parentObj;
return new F;
}
Student.prototype.sayScore=function(){
console.log(this.score);
}
var student=new Student("Ethan","28","97")
模块模式(module)
含义:一般通过闭包的方式实现的,特点:避免全局变量的冲突1
2
3
4
5
6
7
8
9
10var Person=(function(){
var name="Ethan";
function sayName(){
console.log(name);
}
return: {
name: name,
sayName:sayName
}
})();
策略模式
含义:根据不同参数命中不同的策略, 特点:避免if…else判断1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17const strategy = {
'S': function(salary) {
return salary * 4
},
'A': function(salary) {
return salary * 3
},
'B': function(salary) {
return salary * 2
}
}
const calculateBonus = function(level, salary) {
return strategy[level](salary)
}
calculateBonus('A', 10000) // 30000
代理模式
1 | // 图片加载:传统方案 |
订阅发布模式(subcribe/publish)
含义:先订阅后发布,相当于事件监控模式,先定义好函数,再在任何时候异步同步触发事件1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30var EventCenter=(function(){
var events={}; //存储所有的key/value
//events={"hello":[{function(){}:function(){}},{function(){}:function(){}},...]}
function on(evt,handle){
events[evt]=events[evt] || [];
events[evt].push({
handle:handle
});
//events["hello"]=[{handle:handle}]
}
function fire(evt,args){
if(!events[evt]) return;
for(var i=0;i<events[evt].length;i++){
events[evt][i].handle(args);
}
}
function off(name){
delete events[name];
}
return {
on:on,
fire:fire,
off:off
};
})();
EventCenter.on("hello",function(word){
console.log(word);
});
EventCenter.fire("hello","word");
2、使用发布订阅模式写一个事件管理器,可以实现如下方式调用
1 | Event.on('change', function(val){ |
1 | var Event=(function(){ |