node.js中exports和module.exports的使用

每一个node.js文件,都有一个module对象,而每一个module对象都有一个初始化值为 {} 的 exports 属性。
node.js导出模块可以用以下两种方法:

//方法一
exports.aaa = xxx;

//方法二
module.exports = xxx;

方法一:
导出模块moduleA.js

var obj = {
  name:"scy"
}

exports.obj = obj;
exports.c = obj;
exports.num = 19;

导入模块runA.js

const moduleA = require("./moduleA");

console.log(moduleA);//{ obj: { name: 'scy' }, c: { name: 'scy' }, num: 19 }
console.log(moduleA.obj);//{ name: 'scy' }
console.log(moduleA.c);//{ name: 'scy' }
console.log(moduleA.num);//19
console.log(moduleA.ss);//undefined

方法二:
moduleB.js

function Person() {
  this.name = "scy";
  this.age = 19;
  this.getName = function () {
    return this.name;
  }
}
Person.prototype.getAge = function () {
  return this.age;
}
module.exports = Person;

runB.js

const Person = require("./moduleB");

const person = new Person();
console.log(person);//Person { name: 'scy', age: 19, getName: [Function] }
console.log(person.getName());//scy
console.log(person.getAge());//19

注:

//导出
module.exports = {
  a:19
}
exports.a = 100;

//导入
const a = require("./moduleC");
console.log(a);

//结果
19

两个方法可以这样用:

//导出
var exports = module.exports = {
  a:19
}
exports.a = 100;

//导入
const a = require("./moduleC");
console.log(a);

//结果
100
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值