ES6入門教程之Class和Module詳解,es6入門教程module

來源:互聯網
上載者:User

ES6入門教程之Class和Module詳解,es6入門教程module

本文主要介紹了ES6中Class和Module的相關內容,分享出來供大家參考學習,下面來看看詳細的介紹:

一、Class

ES6引入了Class(類)這個概念,作為對象的模板。通過class關鍵字,可以定義類。

 // 定義類 class Point() {  constructor(x, y) {   this.x = x;   this.y = y;  }  toString() {   return '(' + this.x + ', ' + this.y + ')';  } } var point = new Point(2, 3); point.toString(); //(2, 3)

在上面的程式碼片段裡,先是定義了一個Point類,裡面還有一個constructor函數,這就是建構函式。而this關鍵字則代表執行個體對象。

Class之間可以通過extends關鍵字實現繼承

Class ColorPoint extends Point { constructor(x, y, color) {  super(x, y); //等同於super.constructor(x, y)  this.color = color; } toString() {  return this.color + '' + super(); }}

二、Module的基本用法

1>、export和import

ES6實現了模組功能,視圖解決JavaScript代碼的依賴和部署上的問題,取代現有的commonJS和AMD規範,成為瀏覽器和伺服器通用的模組解決方案。

模組的功能有兩個關鍵字: export和import。export用於使用者自訂模組。規定對外介面;import用於輸入其他模組的功能,同時建立命名空間(namespace),防止函數名衝突。

ES6允許將獨立的JS檔案作為模組,也就是說,允許一個JavaScript指令檔調用另一個指令檔。最簡單的模組就是一個JS檔案,裡面使用export關鍵字輸出變數。

 //profile.js export var firstName = "Pandora"; export var lastName = "G.Dragon"; export var year = 1973; //export還有下面這種寫法,兩者是等價的 var firstName = "Pandora"; var lastName = "G.Dragon"; var year = 1973; export({firstName, lastName, year});

使用export定義模組之後,其他JS檔案就可以通過import關鍵字載入這個模組(檔案)了。載入方式如下:

 import {firstName, lastName, year} from './profile'; function setHeader(element) {  element.textContent = firstName + '' + lastName; }

上面的程式碼片段中,使用了import關鍵字接受一個對象——用“{ }”表示。裡面指定了要從其他模組中匯入的變數。大括弧裡面的變數名必須與被匯入模組對外介面的名稱相同。

但是,如果要給輸入的屬性和方法重新取一個名字,import語句要寫成下面這樣。

 import {someMethod, another as newName} from './exporter';

2>、模組的整體載入

export關鍵字除了輸出變數,還可以輸出方法或類(class)。看看下面代碼:

 // circle.js // 方法-1: 返回圓的面積 export function area(radius) {  return Math.PI * radius * radius;  } // 方法-2: 返回圓的周長 export function circumference(radius) {  return 2 * Mathi.PI * radius; }

下面,定義一個main.js檔案引用上面的模組。

 // mian.js import {area, circumference} from 'circle'; console.log("圓面積: " + area(4)); console.log("圓周長: " + circumference(14));

上面的寫法是逐一制定要匯入的方法。但是還有另外一種寫法,就是使用module關鍵字,整體匯入。

 // main.js module circle from 'circle'; console.log("圓面積: " + circle.area(4)); console.log("圓周長: " + circle.circumference(14));

module關鍵字後面跟著一個變數,表示匯入的模組定義在該變數上。

3>、export default語句

如果不想為某個屬性或方法制定輸入的名稱,可以使用export default語句。

 // export-default.js export default function foo() { // foo()就是這個模組的預設方法  console.log('foo'); }

當在其它模組中匯入該模組時,import語句可以為預設方法指定任意名字。

 // import-default.js import customName from './export-default'; customName(); //'foo'

顯然,一個模組只能由一個預設方法。
對於預設屬性,則是直接定義在export default後面即可。如下代碼所示:

 export default 42;

三、模組的繼承

模組之間是可以繼承的。

現在,假設一個circlePlus模組繼承了circle模組。代碼如下:

 //circleplus.js export * from 'circle'; // "export *"表示輸出circle模組的所有屬性和方法 export var e = 2.71828; export default function(x) {  return Math.exp( x ); }

這時,可以對cicle中的屬性和方法改名後再輸出。

 export {area as circleArea } from 'circle';

載入模組的寫法如下:

 //main.js module math from 'circleplus'; import exp from "circleplus"; // "import exp"表示將circleplus模組的預設方法載入為exp方法。 console.log( exp(math.pi) );

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的協助,如果有疑問大家可以留言交流,謝謝大家對幫客之家的支援。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.