- main.js文件
javascript
require.config({
'baseUrl': './js',
'paths': {
module1:'./modules/module1',
module2:'./modules/module2',
// jquery使用小写,因为jquery作为AMD模块,暴露模块使用的键是jquery
jquery:'./libs/jQuery'
}
})
// module1和module2的路径,直接映射paths中的路径
// 使用模块
require(['module1'],function(module1) {
module1.showMsg();
});
require(['module2'],function(module2) {
module2.showMsg();
});
- module1
javascript
// 定义模块:不依赖其它模块的情况
define(function(){
let msg = 'module1';
const showMsg = function(){
console.log(msg);
};
// 暴露模块
return {showMsg};
})
- module2
javascript
// 定义模块:依赖其它模块的情况
define(['jquery'],function($){
let msg = 'module2';
const showMsg = function(){
console.log(msg);
$('body').css('background','gray');
};
// 暴露模块
return {showMsg};
})
- 在index.html使用AMD模块
javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cmdJS</title>
</head>
<body></body>
<!-- 1.引入require.js,2.data-main定义入口文件 -->
<script data-main = "./js/main.js" src="./js/libs/require.js"></script>
</html>