美文网首页
模块之间调用

模块之间调用

作者: 龙叉叉 | 来源:发表于2019-02-11 15:24 被阅读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);

    相关文章

      网友评论

          本文标题:模块之间调用

          本文链接:https://www.haomeiwen.com/subject/najqeqtx.html