模块模式

模块化模式最初被定义为在传统软件工程中为类提供私有和公共封装的一种方法。

能够使一个单独的对象拥有公共/私有的方法和变量,从而屏蔽来自全局作用域的特殊部分。这可以减少我们的函数名与在页面中其他脚本区域内定义的函数名冲突的可能性。

闭包:

// 闭包 模块模式
const obj = (
    function() {
        let count = 0
        return {
            add: function () {
                count++
                return count
            },
            reduce: function () {
                count--
                return count
            }
        }
    }
)()
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<script src="index.js"></script>
<script>
    console.log(obj)
</script>
</body>
</html>

es6模块化:

let count = 0
function add() {
    count++
    return count
}
function reduce() {
    count--
    return count
}
export default {
    add,
    reduce
}
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<!--<script src="index.js"></script>-->
<script type="module">
    import obj from './index.js'

    console.log(obj)
</script>
</body>
</html>

桥接模式

桥接模式:将抽象部分与它的实现部分分离,使它们都可以独立地变化。
使用场景:一个类存在两个或多个独立变化的维度,且这两个维度都需要进行扩展

  • 优点:
    把抽象与实现隔离开,有助于独立地管理各组成部分。
  • 缺点:
    每使用一个桥接元素都要增加一次函数调用,这对应用程序的性能会有一些负面影响一一提高了系统的复杂程度。

比如,一个 toast ,给一个元素绑定动画效果,可以将动画效果的实现隔离,从而不同的 toast 可以在 与不同的动画相结合。

const Animation = {
    fade: {
        show: function (element) {
            console.log(element, 'fade show');
        },
        hide: function (element) {
            console.log(element, 'fade hide');
        }
    },
    slide: {
        show: function (element) {
            console.log(element, 'slide show');
        },
        hide: function (element) {
            console.log(element, 'slide hide');
        }
    }
}

function Toast(element, animation) {
    this.element = element;
    this.animation = animation;
}

Toast.prototype.show = function () {
    this.animation.show(this.element);
}
Toast.prototype.hide = function () {
    this.animation.hide(this.element);
}

const toast = new Toast('div', Animation.fade);
toast.show();
setTimeout(() => {
    toast.hide();
}, 1000)

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部