共计 536 个字符,预计需要花费 2 分钟才能阅读完成。
1. 对于 exports 和 module.exports(node 可运行)
- 在一个 node 执行一个文件时,会给这个文件内生成一个 exports 和 module 对象,
而 module 有一个 exports 属性。 - exports = module.exports = {};
exports.js
var frist1 = 1
module.exports = frist1
importm.js
const frist1 = require('./exports.js');
console.log(frist1)
运行:node importm.js
2. 对于 export 和 export default
- export 与 export default 均可用于导出常量、函数、文件、模块等
- 在一个文件或模块中,export、import 能够有多个,export default 仅有一个
- 通过 export 形式导出,在导入时要加 {},export default 则不须要
- export 能间接导出变量表达式,export default 不行。
参考:
https://blog.csdn.net/weixin_40817115/article/details/81534819
https://segmentfault.com/a/1190000010426778
正文完