ホームページ > 記事 > ウェブフロントエンド > ES6 でのモジュール性の使用の概要 (コード例)
この記事では、ES6 でのモジュール性の使用方法 (コード例) を紹介します。必要な方は参考にしていただければ幸いです。
モジュール化とは、機能を単一にし、高度に結合していない機能を単一のモジュールに抽出し、各モジュールが単一の機能を提供することです。
export import import module
;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
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 中国語 Web サイトの他の関連記事を参照してください。