客户端JS推荐使用ES6模块规范来写
nodejs的服务器开发大家一般使用CommonJS规范来写
CommonJS定义了两个主要概念:
require函数,用于导入模块
module.exports变量,用于导出模块
//xxx.js
let count=0
function addCount(){
count++
}
module.exports={count,addCount}
const uniID= require("xxx")
ES6模块
//common/helper.js
const version = "1.0"
function getVersion() {
return "1.1";
}
export default {
version,
getVersion
}
import helper from "../../common/helper.js"
console.log(helper.version);
总结:
本地用ES6模块导入规范export default {}—import
mode.js服务端使用CommonJS规范module.exports={}—require