聊聊前端模块化

2019-07-26  本文已影响0人  jerry_15cc

从JSP到React,前端模块化到底经历了哪些。

模块化方案

在ajax出现之前,js不需要实现复杂的业务需求,模块化也就没有必要。
当ajax出现之后,js实现的业务逻辑越来越多,js没有模块化解决方案的问题就暴露了出来,代码中的全局变量、函数会互相冲突,为了保证依赖关系,必须严格按照顺序导入script标签。

全局变量/命名空间/立即函数

基于同一个全局变量,各模块按照各自的命名空间挂载,依靠IIFE立即函数实现模块局部作用域的隔离。

CommonJS

Node.js的模块化规范,经过转换可以在浏览器环境执行。
模块同步加载,关键字 module.exports require

AMD/CMD/UMD

// a.js
define(function(){
     console.log('a.js执行');
     return {
          hello: function(){
               console.log('hello, a.js');
          }
     }
});

// main.js
require(['a'], function(a){
     console.log('main.js执行');
     a.hello();
})
// a.js
define(function(require, exports, module){
     console.log('a.js执行');
     return {
          hello: function(){
               console.log('hello, a.js');
          }
     }
});

// b.js
define(function(require, exports, module){
     console.log('b.js执行');
     return {
          hello: function(){
               console.log('hello, b.js');
          }
     }
});

// main.js
define(function(require, exports, module){
     console.log('main.js执行');

     var a = require('a');
     a.hello();    

     $('#b').click(function(){
          var b = require('b');
          b.hello();
     });
    
});
(function (global, factory) {
    if (typeof exports === 'object' && typeof module !== undefined) { //检查CommonJS是否可用
        module.exports = factory(require('jquery'));
    } else if (typeof define === 'function' && define.amd) {      //检查AMD是否可用
        define('toggler', ['jquery', factory])
    } else {       //两种都不能用,把模块添加到JavaScript的全局命名空间中。
        global.toggler = factory(global, factory);
    }
})(this, function ($) {
    function init() {

    }
    return {
        init: init
    }
});

ES6 Modules

模块和组件

组件化方案

引用:模块化思维导图

上一篇 下一篇

猜你喜欢

热点阅读