您现在的位置是:网站首页> NodeJS

nodejs中exports和module.exports的区别

  • NodeJS
  • 2020-11-11
  • 771人已阅读
摘要

module.exports 对象是由模块系统创建的。在我们自己写模块的时候,需要在模块最后写好模块接口,声明这个模块对外暴露什么内容,module.exports 提供了暴露接口的方法。


1、返回一个JSON Object


var app = {

    name: 'app',

    version: '1.0.0',

    sayName: function(name){

        console.log(this.name);

    }

}

module.exports = app;

 

这种方法可以返回全局共享的变量或者方法。

调用方法:


var app = require('./app.js');

app.sayName('hello');//hello

 

或者这样用:


var func1 = function() {

   console.log("func1");

};

 

var func2 = function() {

   console.log("func2");

};

 

exports.function1 = func1;

exports.function2 = func2;

 

调用方法为:


var functions = require("./functions");

functions.function1();

functions.function2();

 

2、返回一个构造函数


CLASS.js:


var CLASS = function(args){

     this.args = args;

}

module.exports = CLASS;

 

调用:


var CLASS = require('./CLASS.js');

varc = new CLASS('arguments');

 

3、返回一个实例对象:


//CLASS.js

var CLASS = function(){

    this.name = "class";

}

CLASS .prototype.func = function(){

    alert(this.name);

}

module.exports = new CLASS();

 

调用:


var c = require('./CLASS.js');

c.func();//"class"

 


exports和module.exports


可是这两种使用起来到底有什么区别呢???


看了很多文章,长篇大论,始终没有讲清楚区别,自己也是看了很多,终于搞清楚了,给大家分享一下


根据使用方法来说


通常exports方式使用方法是:


exports.[function name] = [function name]


moudle.exports方式使用方法是:


moudle.exports= [function name]


这样使用两者根本区别是


**exports **返回的是模块函数

**module.exports **返回的是模块对象本身,返回的是一个类

使用上的区别是

exports的方法可以直接调用

module.exports需要new对象之后才可以调用


二话不说,撸代码!


1. exports方式

先创建一个exports_mode.js


var sayHello = function(){    console.log('hello')

}

exports.sayHello = sayHelloconsole.log(exports); 

console.log(module.exports);

然后写一个test.js调用下试试看


var exports_mode = require('./exports_mode')

exports_mode.sayHello()

输出:


 




exports_mode.png


发现此时exports和module.exports对象输出的都是一个sayHello方法,

为什么module.exports也有exports方法了,简单点理解就是


exports是module.exports的一个引用,exports指向的是module.exports


我们来验证下,在exports_mode.js最后一行添加一句代码


var sayHello = function(){    console.log('hello')

}

exports.sayHello = sayHelloconsole.log(exports); 

console.log(module.exports); 

console.log(exports === module.exports);



结果输出.png


发现console.log(exports === module.exports)返回的是true,

说明exports和module.exports是同一个对象


下来看看


2. module.exports方式

首先创建module_exports_mode.js


var sayHello = function(){    console.log('hello')

}module.exports = sayHelloconsole.log(module.exports); 

console.log(exports); 

console.log(exports === module.exports);

然后测试一下


var module_export_mode = require('./module_exports_mode')

module_export_mode.sayHello()



控制台输出.png


发现输出报错了!


为什么呢,因为我们的调用方式错了,一开始就说到了


**module.exports **返回的是模块对象本身

正确的调用


var module_export_mode = require('./module_exports_mode')new module_export_mode()



控制台输出.png


 


同时我们可以看到,输出的module.exports对象内容就是一个[Function],在javascript里面是一个类


使用这样的好处是exports只能对外暴露单个函数,但是module.exports却能暴露一个类


我们把module_exports_mode.js扩展一下


var xiaoming = function(name){    this.name = name    this.sayHello = function(){        return 'hello '+this.name

    }    this.sayGoodBye = function(){        return 'goodbye '+this.name

    }

}module.exports = xiaomingconsole.log(module.exports); 

console.log(exports); 

console.log(exports === module.exports);

然后测试


var xiaoming = require('./module_exports_mode')var xiaoming = new xiaoming('Lucien')console.log(xiaoming.sayHello())console.log(xiaoming.sayGoodBye())



控制台输出.png


使用方法和javascript的类创建对象一毛一样


exports.[function name] = [function name]

moudle.exports= [function name]


以上就是这两种方式的使用区别。


等等,还没完。。。


上面有提到


exports是module.exports的一个引用,exports指向的是module.exports


也就是说exports的方法module.exports也是一定能完成的


exports.[function name] = [function name]

moudle.exports= [function name]


所以,在使用上


** moudle.exports.[function name]   = [function name] **

**  是完全和 **

** exports.[function name] = [function name]  **

**  相等的   **


但是我们通常还是推荐使用exports.[function name],各司其职,代码逻辑清晰


Top