💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 一、require(string path) 引入模块。返回模块通过`module.exports`或`exports`暴露的接口。 | 名称 | 类型 | 说明 | | --- | --- | --- | | path | string | 需要引入模块文件相对于当前文件的相对路径,或npm模块名,或npm模块路径。不支持绝对路径 | ~~~ // 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') } }) ~~~ ## 二、Object module 当前模块对象 | 属性 | 类型 | 说明 | | --- | --- | --- | | exports | Object | 模块向外暴露的对象,使用`require`引用该模块时可以获取 | ~~~ // common.js function sayHello(name) { console.log(`Hello ${name} !`) } function sayGoodbye(name) { console.log(`Goodbye ${name} !`) } module.exports.sayHello = sayHello ~~~ ## 三、Object exports module.exports 的引用 ``` // common.js function sayHello(name) { console.log(`Hello ${name} !`) } function sayGoodbye(name) { console.log(`Goodbye ${name} !`) } exports.sayGoodbye = sayGoodbye ```