首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

深入理解node.js的module.export 和 export方法的区别

发布网友 发布时间:2022-04-23 07:56

我来回答

2个回答

热心网友 时间:2022-04-22 12:17

##mole.exports与exports的区别
每一个node.js执行文件,都自动创建一个mole对象,同时,mole对象会创建一个叫exports的属性,初始化的值是 {}
mole.exports = {};
Node.js为了方便地导出功能函数,node.js会自动地实现以下这个语句
foo.js
exports.a = function(){
console.log('a')
}
exports.a = 1
test.js
var x = require('./foo');
console.log(x.a)
看到这里,相信大家都看到答案了,exports是引用 mole.exports的值。mole.exports 被改变的时候,exports不会被改变,而模块导出的时候,真正导出的执行是mole.exports,而不是exports
再看看下面例子
foo.js
exports.a = function(){
console.log('a')
}
mole.exports = {a: 2}
exports.a = 1
test.js
var x = require('./foo');
console.log(x.a)
result:
2
exports在mole.exports 被改变后,失效。
是不是开始有点廓然开朗,下面将会列出开源模块中,经常看到的几个使用方式。
##mole.exports = View
function View(name, options) {
options = options || {};
this.name = name;
this.root = options.root;
var engines = options.engines;
this.defaultEngine = options.defaultEngine;
var ext = this.ext = extname(name);
if (!ext && !this.defaultEngine) throw new Error('No default engine was specified and no extension was provided.');
if (!ext) name += (ext = this.ext = ('.' != this.defaultEngine[0] ? '.' : '') + this.defaultEngine);
this.engine = engines[ext] || (engines[ext] = require(ext.slice(1)).__express);
this.path = this.lookup(name);
}
mole.exports = View;
javascript里面有一句话,函数即对象,View 是对象,mole.export =View, 即相当于导出整个view对象。外面模块调用它的时候,能够调用View的所有方法。不过需要注意,只有是View的静态方法的时候,才能够被调用,prototype创建的方法,则属于View的私有方法。
foo.js
function View(){
}
View.prototype.test = function(){
console.log('test')
}
View.test1 = function(){
console.log('test1')
}
mole.exports = View
test.js
var x = require('./foo');
console.log(x) //{ [Function: View] test1: [Function] }
console.log(x.test) //undefined
console.log(x.test1) //[Function]
x.test1() //test1
##var app = exports = mole.exports = {};
其实,当我们了解到原理后,不难明白这样的写法有点冗余,其实是为了保证,模块的初始化环境是干净的。同时也方便我们,即使改变了 mole.exports 指向的对象后,依然能沿用 exports的特性
exports = mole.exports = createApplication;
/**
* Expose mime.
*/
exports.mime = connect.mime;
例子,当中mole.exports = createApplication改变了mole.exports了,让exports失效,通过exports = mole.exports的方法,让其恢复原来的特点。
##exports.init= function(){}
这种最简单,直接就是导出模块 init的方法。
##var mongoose = mole.exports = exports = new Mongoose;

热心网友 时间:2022-04-22 13:35

您好,请问您是想知道深入理解node.js的mole.export 和 export方法的区别吗?

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com