溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

node 中 module.exports 與 exports 有什么區(qū)別

發(fā)布時間:2021-07-20 09:26:12 來源:億速云 閱讀:107 作者:chen 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“node 中 module.exports 與 exports 有什么區(qū)別”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“node 中 module.exports 與 exports 有什么區(qū)別”吧!


exportsmodule.exports 的引用,類似如下所示

const exports = module.exports
 

那如下結(jié)果會如何導出?

module.exports = 100
exports = 3
 

很顯然會導出 100,畢竟 exports 進行了重指向。

「那在 node 源碼中如何實現(xiàn)的呢?」 從源碼里可以看出 「exports」 的實質(zhì)

node 中 module.exports 與 exports 有什么區(qū)別  
module wrapper

詳見源碼: https://github.com/nodejs/node/blob/master/lib/internal/modules/cjs/loader.js#L1252,可以看出符合猜想

眾所周知,node 中所有的模塊代碼都被包裹在這個函數(shù)中

(function(exports, require, module, __filename, __dirname) {
  exports.a = 3
});
 

而以下源碼指出,exports 是如何得來

const dirname = path.dirname(filename);
const require = makeRequireFunction(this, redirects);
let result;
// 從這里可以看出來 exports 的實質(zhì)
const exports = this.exports;
const thisValue = exports;
const module = this;
if (requireDepth === 0) statCache = new Map();
if (inspectorWrapper) {
  result = inspectorWrapper(compiledWrapper, thisValue, exports,
                            require, module, filename, dirname);
} else {

  // 這里是模塊包裝函數(shù)
  result = compiledWrapper.call(thisValue, exports, require, module,
                                filename, dirname);
}

到此,相信大家對“node 中 module.exports 與 exports 有什么區(qū)別”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關內(nèi)容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI