[摘要]微信小程序中module.exports与exports的用法可以查看下面官方提供的文档,使用起来还是比较简单方便的,但时对于这两者的区别解释的不是很明白。微信小程序官方文档--框架--逻辑层--模...
微信小程序中module.exports与exports的用法可以查看下面官方提供的文档,使用起来还是比较简单方便的,但时对于这两者的区别解释的不是很明白。
微信小程序官方文档--框架--逻辑层--模块化.png
为了更好的理解 exports 和module.exports 的关系,我们先来补点 js 基础。示例:
// index.js
Page({
onLoad: function(){
var a = {name: '张三'};
var b = a;
console.log(a);
console.log(b);
b.name = '李四';
console.log(a);
console.log(b);
var b = {name: '王五'};
console.log(a);
console.log(b);
}
})