输出模块
module.exports = a;
把a作为整个模块的输出项目
输入模块
var b = require('./hello');
定义 b为整个hello模块
当前目录:./
输出模块中多个函数
module.exports = {
greet:greet,
hello:hello,
};
调用其他模块的多个函数
var g = require('./hello');
g.greet(b);//这边注意是用点号来调用的
g.hello(b);
输出模块
module.exports = a;
把a作为整个模块的输出项目
输入模块
var b = require('./hello');
定义 b为整个hello模块
当前目录:./
输出模块中多个函数
module.exports = {
greet:greet,
hello:hello,
};
调用其他模块的多个函数
var g = require('./hello');
g.greet(b);//这边注意是用点号来调用的
g.hello(b);
本文标题:模块之间调用
本文链接:https://www.haomeiwen.com/subject/najqeqtx.html
网友评论