暴露接口
- 模块只有通过module.exports或者 exports才能对外暴露接口
推荐开发者采用module.exports来暴露模块接口
*小程序目前不支持直接引入node_modules,开发者需要使用到node_modules时候建议拷贝出相关的代码到小程序的目录中。
function sayHello(name) {
console.log('Hello ${name} !')
}
module.exports.sayHello = sayHello
引入公共代码
var common = require('common.js')
common.sayHello('MINA')
!!require暂时不支持绝对路径!!
网友评论