CommonJs 定义的是同步模块加载方案,AMD/CMD定义的是异步模块加载方案git
CommonJs: 包含两大工具 require() 以及 module.exportsgithub
module.exports 用于产生一个模块,方法是将在文件末尾加入 module.exports = 该文件内的一个变量,就使得该变量成为模块异步
require 用于引用一个模块,例如 require("./helllo") 括号内为路径名而且不要".js"的后缀async
//举例 // 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)ui
- dependencies 可选参数,id列表,用于指出该模块的依赖模块,依赖模块的id多是相对id。若是dependencies参数不存在,模块加载器有可能扫描factory函数来得到相关的依赖模块。当模块加载器加载该模块时,会先加载依赖模块spa
- factory 必要参数,函数类型或者object类型。若为函数类型,该函数只能被执行一次,若为object类型,则应该做为模块的输出code
Sets up the module with ID of "alpha", that uses require, exports and the module with ID of "beta":blog
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)