🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### module.exports ``` module.exports将接口暴露给外部使用 ``` ~~~ //对象可以和其他对象、方法以及属性一起被export出来 function MyClass() { } MyClass.prototype = { hello: function () { return 'hello m1'; }, say: function () { return 'say m1'; } }; var myClass = new MyClass(); module.exports = myClass; ~~~ ~~~ //对外导出多个对象、方法和值 exports.hello = function () { return 'hello m2'; }; exports.say = function () { return "say m2"; }; ~~~