模块之间调用

2019-02-11  本文已影响0人  龙叉叉

输出模块

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);

上一篇下一篇

猜你喜欢

热点阅读