首頁 > web前端 > js教程 > ES6中模組化的使用介紹(程式碼範例)

ES6中模組化的使用介紹(程式碼範例)

不言
發布: 2018-10-29 14:23:50
轉載
1871 人瀏覽過

這篇文章帶給大家的內容是關於ES6中模組化的使用介紹(程式碼範例),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

模組化就是為了讓功能單一,把各個耦合性不高的功能抽離出來成單一的模組,每個模組提供單一的功能

export 導出模組;import 導入模組

使用多個export

module.js

export let A = 123;
export function test() {
    return 'test';
}
export class Hello {
    test() {
        console.log('class');
    }
}
登入後複製

index.js

// 1.基本用法
import {A,test,Hello} from './class/module';
console.log(A, test()); // 123 "test"
登入後複製
// 2.只关心某些内容
import {A} from './class/module';
console.log(A); // 123
登入後複製
// 3.* 和 as。* 表示导入所有,as 表示起一个别名
import * as module1 from './class/module';
console.log(module1.test()); // test
登入後複製

使用export default

module.js

// 推荐写法
let A = 123;
let test = function() {
    console.log('test');
};
class Hello {
    test() {
        console.log('class');
    }
}
// default 给导出的对象不起名字,把权力交给引入方
export default {
    A,
    test,
    Hello
}
登入後複製

#index.js

import module2 from './class/module';
console.log(module2.A); // 123
登入後複製

#

以上是ES6中模組化的使用介紹(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板