模块文件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

相关文章:

  • 2022-02-17
  • 2021-09-20
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2022-01-06
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案