微信公开课
如何看待微信公开课小程序热门讨论「小程序模块化传参」
摘要:小程序模块化传参
展开://common.jsfunctionsayHello(name){console.log(`Hello${name}!`)}functionsayGoodbye(name){console.log(`Goodbye${name}!`)}module.exports.sayHellosayHelloexports.sayGoodbyesayGoodbyevarcommonrequire(common.js)Page({helloMINA:function(){common.sayHello(MINA)},goodbyeMINA:function(){common.sayGoodbye(MINA)}})//输出结果Hello${name}!Goodbye${name}!这是什么情况啊了解更多