Node中Exports与module.export的使用与区别
最近在看《node開(kāi)發(fā)實(shí)戰(zhàn)詳解》時(shí)有寫(xiě)疑問(wèn),所以自己就整理了一些資料。下面是node4.*的官方api文檔(http://nodejs.cn/doc/node_4/modules.html#modules_module_exports),我有點(diǎn)看不懂,就拉出node.10*的官方api(https://nodejs.org/dist/v0.10.9/docs/api/modules.html#modules_module_exports)。
?
module.exports與exports的介紹
module.exports與exports都是將函數(shù)或者是方法暴露出去,require的時(shí)候進(jìn)行調(diào)用,但是2者是有區(qū)別的。以下是代碼:
?
//ex.jsexports='danhuangmode';
//mex.js
? module.exports='danhuangmode';
//call_ex_mex.js? var ex=require('./ex');
? var mex=require('./mex');
? console.log(ex);
? console.log('\n');
? console.log(mex);
執(zhí)行結(jié)果:
?
引用exports提供方法,輸出是為一個(gè)對(duì)象,引用module.exports提供方法,輸出為字符串。
?
exports內(nèi)部提供接口,在外部引用時(shí)之間的關(guān)系如何?
exports內(nèi)部處理暴露方法,是如何處理的,看如下代碼:
var string='this is in exports.js';function ex_fn () {console.log('this in funtion ex_fn'); }var exobj={str1:"str1 exobj",exobjfn: function () {console.log("in function");} };exports.string=string; exports.ex_fn=ex_fn; exports.exobj=exobj; exports=exobj;調(diào)用代碼:
var ex=require('./ex');console.log(ex.string); console.log(ex.ex_fn); console.log(ex.exobj); console.log(ex);結(jié)果顯示:
?
exports提供的所有接口,直接調(diào)用導(dǎo)出實(shí)例化的接口對(duì)象,會(huì)顯示接口對(duì)象中所有提供的類型、函數(shù)、對(duì)象以及對(duì)象中的方法和對(duì)象。
module.exports對(duì)外提供接口如何處理?
//mex.js
var ex_fn= function () {console.log('this in funtion ex_fn'); } module.exports=ex_fn;
調(diào)用代碼mex.js:
//引用mex.jsvar ex=require('./mex');
ex();
console.log(ex);
執(zhí)行結(jié)果為:
?
?直接將函數(shù)作為返回。
再看下面一個(gè)例子:
var person={name :"person's name",age :20,getAge: function () {return this.age;} }module.exports = person;調(diào)用的代碼:
var person=require('./modulex');console.log(person.name); console.log(person.age); console.log(person.getAge()); console.log(person);顯示的結(jié)果為:
返回為一個(gè)json對(duì)象,可以直接調(diào)用內(nèi)部的函數(shù)、屬性。
module.exports 與exports是什么關(guān)系?
?
module.exports = 'personname';exports.name=function () {console.log('this is person name'); }調(diào)用 的腳本:
var person=require('./person');console.log(person); console.log(person.name);執(zhí)行結(jié)果:
personname
undefined
?
結(jié)果:
其實(shí)真正的接口是module.exports,exports是一個(gè)輔助工具。最終返回到是module.exports,而不是exports。
當(dāng)module.exports沒(méi)有任何屬性和方法,exports將收集的所有信息都傳遞給module.exports,如果module.exports已經(jīng)具有了屬性和方法,exports所搜集的信息將會(huì)被忽略。
轉(zhuǎn)載于:https://www.cnblogs.com/macoco/p/5398864.html
總結(jié)
以上是生活随笔為你收集整理的Node中Exports与module.export的使用与区别的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: [Swift]随slider变化而变化的
- 下一篇: 大班社会教案《我是中国娃》反思