微信小程序----模块化
2018-12-29 本文已影响0人
Zach_1991
模块只有通过 module.exports 或者 exports 才能对外暴露接口。
exports 是 module.exports 的一个引用,因此在模块里边随意更改 exports 的指向会造成未知的错误。所以更推荐开发者采用 module.exports 来暴露模块接口,除非你已经清晰知道这两者的关系。
小程序目前不支持直接引入 node_modules , 开发者需要使用到 node_modules 时候建议拷贝出相关的代码到小程序的目录中或者使用小程序支持的 npm 功能。
// common.js
functionsayHello(name){
console.log(`Hello${name}!`)
}
functionsayGoodbye(name){
console.log(`Goodbye${name}!`)
}
module.exports.sayHello = sayHello;
exports.sayGoodbye = sayGoodbye;
//页面
constcommon =require('common.js')
Page({
helloMINA() {
common.sayHello('MINA')
},
goodbyeMINA() {
common.sayGoodbye('MINA')
}
});