js模块开发(同步模块)实现原理

const F = {};
//定义模块管理器
F.define = function (str, fn) {
    var parts = str.split('.'),
        old = parent = this,
        i = len = 0;
    if (parts[0] === 'F') {
        parts = parts.slice();
    }
    if (parts[0] === 'define' || parts[0] === 'modules') {
        return;
    }
    for (len = parts.length; i < len; i++) {
        if (typeof parent[parts[i]] === 'undefined') {
            parent[parts[i]] = {};
        }
        old = parent;
        parent = parent[parts[i]];
    }
    if (fn) {
        old[parts[--i]] = fn();
    }
    return this;
}
//模块调用方法
F.module = function () {
    var args = Array.from(arguments),
        fn = args.pop(),
        parts = args[0] && args[0] instanceof Array ? args[0] : args,
        modules = [],
        modIDs = '',
        i = 0,
        ilen = parts.length,
        parent, j, jlen;
    while (i < ilen) {
        if (typeof parts[i] === 'string') {
            parent = this;
            modIDs = parts[i].replace(/^F./, '').split('.');
            for (j = 0; j < modIDs.length; j++) {
                parent = parent[modIDs[j]] || false;
            }
            modules.push(parent);
        } else {
            modules.push(parts[i]);
        }
        i++;
    }
    fn.apply(null, modules);
}
定义人和动物模版
F.define('person', function () {
            return {
                sayHello: function () {
                    alert('hello');
                }
            }
        });
F.define('animal', function () {
            return {
                sayWang: function () {
                    alert('wang wang');
                }
            }
        });
引入模版,并调用定义的模版方法
F.module(['man', 'animal'], function (man, dog) {
                man.sayHello();
                dog.sayWang();
            });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值