在 JavaScript 中使用模块通常有两种方式:CommonJS 和 ES6 模块。
// math.js
function add(a, b) {
return a + b;
}
function subtract(a, b) {
return a - b;
}
module.exports = {
add,
subtract
}
导入模块:
// index.js
const math = require('./math');
console.log(math.add(1, 2)); // 输出 3
console.log(math.subtract(5, 3)); // 输出 2
// math.js
export function add(a, b) {
return a + b;
}
export function subtract(a, b) {
return a - b;
}
导入模块:
// index.js
import { add, subtract } from './math';
console.log(add(1, 2)); // 输出 3
console.log(subtract(5, 3)); // 输出 2
需要注意的是,浏览器中使用 ES6 模块时,需要在 script 标签中添加 type=“module” 属性。例如:
<script type="module" src="index.js"></script>
总的来说,使用 ES6 模块可以让代码更加清晰和模块化,推荐在现代项目中使用 ES6 模块。