JS設計モード——責任連鎖モード


パターンの役割:
1,domの泡立ちはいくつかの類似の職責チェーンがあります.
2,nodejsはcontrollerの中に多くの操作ロジックを担当するとき中間部品を分割する.
3,デカップ送信者と受信者
注意事項:
1,JavaScriptの中の毎回の[.]は代価があるので、必要な時に適用します.


    function laoban(xiangmujingli){
        if(xiangmujingli){
            this.xiangmujingli=xiangmujingli;
        }
    }
    laoban.prototype.write=function(php){
        this.xiangmujingli.write(php);
    }

    function xiangmujingli(coder){
        if(coder){
            this.coder=coder;
        }
    }
    xiangmujingli.prototype.write=function(php){
        this.coder.write(php);
    }
    function coder(php){
        //this.write(php);
    }
    coder.prototype.write=function(php){
        console.log('coding....'+php);
    }
    //begin    coder  
    var begin=new laoban(new xiangmujingli(new coder()));
    begin.write('php');