【JavaScript】インポートのサンプル
対応していないブラウザもあるので注意。
1 2 3 4 5 6 7 8 9 10 11 |
import { Customer } from './Util' //指定したオブジェクトのみインポート var c = new Customer('0001', '太郎'); console.log(c.getInfo()); import * as app from './Util'; //全部インポート var pc = new app.PrimeCustomer('0002', '次郎', 'Royal'); console.log(pc.getInfo()); import {customer as myCustomer} from './Util'; //別名を指定してインポート c = new myCustomer('0003', '三郎'); console.log(c.getInfo()); |
タグ :
ES2015, JavaScript