真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

node.js的exports、module.exports與ES6的export、exportdefault深入詳解

前言

成都創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站建設(shè)、成都網(wǎng)站制作與策劃設(shè)計,平順網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:平順等地區(qū)。平順做網(wǎng)站價格咨詢:13518219792

最近難得有空,決定開始重新規(guī)范的學習一下node編程。但是引入模塊我看到用 require的方式,再聯(lián)想到咱們的ES6各種export 、export default。

阿西吧,頭都大了....

頭大完了,那我們坐下先理理他們的使用范圍。

  • require: node 和 es6 都支持的引入
  • export / import : 只有es6 支持的導出引入
  • module.exports / exports: 只有 node 支持的導出

這一刻起,我覺得是時候要把它們之間的關(guān)系都給捋清楚了,不然我得混亂死。話不多少,咱們開干?。?/p>

node模塊

Node里面的模塊系統(tǒng)遵循的是CommonJS規(guī)范。

那問題又來了,什么是CommonJS規(guī)范呢?

由于js以前比較混亂,各寫各的代碼,沒有一個模塊的概念,而這個規(guī)范出來其實就是對模塊的一個定義。

CommonJS定義的模塊分為: 模塊標識(module)、模塊定義(exports) 、模塊引用(require)

先解釋 exports 和 module.exports

在一個node執(zhí)行一個文件時,會給這個文件內(nèi)生成一個 exports和module對象,

而module又有一個exports屬性。他們之間的關(guān)系如下圖,都指向一塊{}內(nèi)存區(qū)域。

exports = module.exports = {};

node.js的exports、module.exports與ES6的export、export default深入詳解

那下面我們來看看代碼的吧。

//utils.js
let a = 100;

console.log(module.exports); //能打印出結(jié)果為:{}
console.log(exports); //能打印出結(jié)果為:{}

exports.a = 200; //這里辛苦勞作幫 module.exports 的內(nèi)容給改成 {a : 200}

exports = '指向其他內(nèi)存區(qū)'; //這里把exports的指向指走

//test.js

var a = require('/utils');
console.log(a) // 打印為 {a : 200} 

從上面可以看出,其實require導出的內(nèi)容是module.exports的指向的內(nèi)存塊內(nèi)容,并不是exports的。

簡而言之,區(qū)分他們之間的區(qū)別就是 exports 只是 module.exports的引用,輔助后者添加內(nèi)容用的。

用白話講就是,exports只輔助module.exports操作內(nèi)存中的數(shù)據(jù),辛辛苦苦各種操作數(shù)據(jù)完,累得要死,結(jié)果到最后真正被require出去的內(nèi)容還是module.exports的,真是好苦逼啊。

其實大家用內(nèi)存塊的概念去理解,就會很清楚了。

然后呢,為了避免糊涂,盡量都用 module.exports 導出,然后用require導入。

ES中的模塊導出導入

說實話,在es中的模塊,就非常清晰了。不過也有一些細節(jié)的東西需要搞清楚。

比如 export 和 export default,還有 導入的時候,import a from ..,import {a} from ..,總之也有點亂,那么下面我們就開始把它們捋清楚吧。

export 和 export default

首先我們講這兩個導出,下面我們講講它們的區(qū)別

  • export與export default均可用于導出常量、函數(shù)、文件、模塊等
  • 在一個文件或模塊中,export、import可以有多個,export default僅有一個
  • 通過export方式導出,在導入時要加{ },export default則不需要
  • export能直接導出變量表達式,export default不行。

下面咱們看看代碼去驗證一下

testEs6Export.js

'use strict'
//導出變量
export const a = '100'; 

 //導出方法
export const dogSay = function(){ 
 console.log('wang wang');
}

 //導出方法第二種
function catSay(){
 console.log('miao miao'); 
}
export { catSay };

//export default導出
const m = 100;
export default m; 
//export defult const m = 100;// 這里不能寫這種格式。

index.js

//index.js
'use strict'
var express = require('express');
var router = express.Router();

import { dogSay, catSay } from './testEs6Export'; //導出了 export 方法 
import m from './testEs6Export'; //導出了 export default 

import * as testModule from './testEs6Export'; //as 集合成對象導出



/* GET home page. */
router.get('/', function(req, res, next) {
 dogSay();
 catSay();
 console.log(m);
 testModule.dogSay();
 console.log(testModule.m); // undefined , 因為 as 導出是 把 零散的 export 聚集在一起作為一個對象,而export default 是導出為 default屬性。
 console.log(testModule.default); // 100
 res.send('恭喜你,成功驗證');
});

module.exports = router;

從上面可以看出,確實感覺 ES6的模塊系統(tǒng)非常靈活的。

代碼地址

GitHub: https://github.com/XuXiaoGH/exportImportTest

本地下載:http://xiazai.jb51.net/201710/yuanma/exportImportTest(jb51.net).rar

參考文獻

1.老樹新芽,在ES6下使用Express

2.exports 和 module.exports 的區(qū)別
3.module.exports與exports,export與export default之間的關(guān)系

感謝這三位前輩的分享。

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。


分享標題:node.js的exports、module.exports與ES6的export、exportdefault深入詳解
文章出自:http://weahome.cn/article/giocjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部