NodeJS导入一个模块

模块文件other.js:

module.exports = {
    fun1 : function() {
        console.log("啊啊啊");
    },
    str1 : '666'
};

导进来并使用:

var other = require("./other");
other.fun1();
console.log(other.str1);

运行:

E:\WorkSpace\JavaScriptStudy>node main.js
啊啊啊
666

猜你喜欢

转载自www.cnblogs.com/LiuZhiHao/p/10685009.html