标签:normal 参数 path page 绝对路径 接口 模块名 obj pat
// common.js function sayHello(name){ console.log(`hello ${name}`) } function sayGoodbye(name){ console.log(`goodbye ${name}`) } module.exports.sayHello=sayHello exports.sayGoodbye=sayGoodbye var common=require("common.js") Page({ helloMINA:function(){ common.sayHello("MINA") }, goodbyeMINA:function(){ common.sayGoodbye("MINA") } })
// common.js function sayHello(name){ console.log(`hello ${name}`) } function sayGoodbye(name){ console.log(`goodbye ${name}`) } module.exports.sayHello=sayHello exports.sayGoodbye=sayGoodbye
// common.js function sayHello(name){ console.log(`hello ${name}`) } function sayGoodbye(name){ console.log(`goodbye ${name}`) } module.exports.sayHello=sayHello exports.sayGoodbye=sayGoodbye
标签:normal 参数 path page 绝对路径 接口 模块名 obj pat
原文地址:https://www.cnblogs.com/wuqilang/p/12076131.html