前端JavaScript设计模式-职责链模式:
职责链模式是一步操作可能分为多个角色来完成,将这些角色分开,然后用一个链再串起来,将发起者和各个处理者进行隔离
例如公司请假审批流业务场景
class Action{
constructor(name){
this.name = name
this.nextAction = null
}
setNextAction(action){
this.nextAction = action
}
handle(){
console.log(`${this.name}审批`)
if(this.nextAction != null){
this.nextAction.handle()
}
}
}
let a1 = new Action('组长')
let a2 = new Action('经理')
let a3 = new Action('BOSS')
a1.setNextAction(a2)
a2.setNextAction(a3)
a1.handle()
本文暂时没有评论,来添加一个吧(●'◡'●)