1.AMD
- require.js
- 全局 define 函数
- 全局 require 函数
- 依赖的JS会自动、异步加载
//util.js
define(function(){
return {
getFormatDate : function(date,type){
if (type === 1) {
return '2018-09-10';
}
if (type === 2) {
return '2018年9月10日';
}
}
}
})
//a-util.js
define(['./util.js'],function(util){
return {
aGetFormatDate : function(date){
return util.getFormatDate(date,2);
}
}
})
//a.js
define(['./a-util.js'],function(aUtil){
return {
printDate: function(date){
console.log(aUtil.aGetFormatDate(date));
}
}
})
//main.js
require(['./a.js'],function(a){
var date = new Date();
a.printDate(date);
})
//引用
<script src="/require.min.js" data-main="./main.js"></script>
2.CommonJS
//util.js
module.exports = {
getFormatDate : function(date,type){
if (type === 1) {
return '2018-09-10';
}
if (type === 2) {
return '2018年9月10日';
}
}
}
//a-util.js
var util = require('util.js')
module.exports = {
aGetFormatDate : function(date){
return util.getFormatDate(date,2);
}
}
3.AMD 和 CommonJS 的使用场景
- 需要异步加载JS,使用AMD
- 使用了 npm 之后建议使用 CommonJS
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。