zoukankan      html  css  js  c++  java
  • CommonJs AMD CMD 模块加载

    CommonJs 定义的是同步模块加载方案,AMD/CMD定义的是异步模块加载方案

    CommonJs:  包含两大工具 require() 以及 module.exports

          module.exports 用于产生一个模块,方法是将在文件末尾加入 module.exports = 该文件内的一个变量,就使得该变量成为模块

          require 用于引用一个模块,例如 require("./helllo") 括号内为路径名并且不要".js"的后缀

          

    //举例
    // moduleA.js
    module.exports = function( value ){
        return value*2;
    }
    
    // moduleB.js
    var multiplyBy2 = require('./moduleA');
    var result = multiplyBy2( 4 );

    AMD  RequireJS 在推广过程中对模块定义的规范化产出

        - define(id?, dependencies?, factory); 

          - id 可选参数,字符串类型。独一无二,id即为模块的id.如果id参数存在,那么id参数必须是顶层或者绝对id(而不是相对id)

          - dependencies 可选参数,id列表,用于指出该模块的依赖模块,依赖模块的id可能是相对id。如果dependencies参数不存在,模块加载器有可能扫描factory函数来获得相关的依赖模块。当模块加载器加载该模块时,会先加载依赖模块

          - factory 必要参数,函数类型或者object类型。若为函数类型,该函数只能被执行一次,若为object类型,则应该作为模块的输出

        

    
    

      Sets up the module with ID of "alpha", that uses require, exports and the module with ID of "beta":

    
    
       define("alpha", ["require", "exports", "beta"], function (require, exports, beta) {
           exports.verb = function() {
               return beta.verb();
               //Or:
               return require("beta").verb();
           }
       });

    An anonymous module that returns an object literal: define([
    "alpha"], function (alpha) { return { verb: function(){ return alpha.verb() + 2; } }; }); A dependency-free module can define a direct object literal: define({ add: function(x, y){ return x + y; } });

    加载方法

      require(['math'], function (math){

    
    

        alert(math.add(1,1));

    
    

      });

    CMD  CMD定义规范中一个模块就是一个文件。代码书写格式:

        更多请看: https://github.com/seajs/seajs/issues/242

        define(id?, deps?, factory)

        require(id)

        require.async(id, callback?)

        require.resolve(id)

      

  • 相关阅读:
    一次性能测试的面试问题
    一次APP测试的感悟
    《程序员跳槽全攻略》读书笔记
    如果有人让你推荐编程技术书,请叫他看这个列表
    上班的一天
    马士兵Java视频教程 —— 学习顺序
    月薪3万的技术网站资源收集
    给32岁的自己一些答案
    《Vuser虚拟用户开发》读书笔记
    shell脚本异常:/bin/sh^M:bad interpreter: No such file or directory
  • 原文地址:https://www.cnblogs.com/lifeisshort/p/4905617.html
Copyright © 2011-2022 走看看