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

facade(外观)模式

时间:2014-07-18 15:33:10      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   os   io   

外观模式,该模式会触发一系列的私有行为,但用户不会接触到,我们让facade编程一个不需要关注实现细节,而且更容易使用的一个特性

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>

</body>
<script>
    var module = (function(){
        var _private ={
            i:5,
            get:function(){
                return this.i;
            },
            set:function(val){
                this.i = val;
            },
            run:function(){
               console.log(this.i);
            },
            jump:function(){
                cosole.log(‘jumping‘);
            }
        };

        return {
            facade:function(args){
                _private.set(args.val);
                _private.get();
                if(args.run){
                    _private.run();
                }
            }
        };
    }());
    module.facade({run:true,val:10})
</script>
</html>

facade(外观)模式,布布扣,bubuko.com

facade(外观)模式

标签:style   blog   color   使用   os   io   

原文地址:http://www.cnblogs.com/lihaozhou/p/3852361.html

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