ส่งออกหลายคลาสในโมดูล ES6


150

ฉันกำลังพยายามสร้างโมดูลที่ส่งออกหลายคลาส ES6 สมมติว่าฉันมีโครงสร้างไดเรกทอรีต่อไปนี้:

my/
└── module/
    ├── Foo.js
    ├── Bar.js
    └── index.js

Foo.jsและBar.jsแต่ละการส่งออกคลาส ES6 เริ่มต้น:

// Foo.js
export default class Foo {
  // class definition
}

// Bar.js
export default class Bar {
  // class definition
}

ฉันมีการindex.jsตั้งค่าของฉันเช่นนี้:

import Foo from './Foo';
import Bar from './Bar';

export default {
  Foo,
  Bar,
}

อย่างไรก็ตามฉันไม่สามารถนำเข้า ฉันต้องการที่จะทำเช่นนี้ แต่ไม่พบชั้นเรียน:

import {Foo, Bar} from 'my/module';

วิธีที่ถูกต้องในการส่งออกหลายคลาสในโมดูล ES6 คืออะไร?


5
เพียงใช้exportโดยไม่มีค่าเริ่มต้น
webdeb

คุณสามารถdefaultส่งออกได้เพียงครั้งเดียว import SomeClass from 'my/module'ลองนึกภาพถ้ามีคนพยายามที่จะทำ สิ่งนี้จะนำเข้าdefaultโมดูลจากเส้นทางนั้นโดยอัตโนมัติ หากคุณมีการส่งออกเริ่มต้นหลายครั้งคุณจะทราบได้อย่างไรว่าจะนำเข้ารายการใด
saadq

คำตอบ:


258

ลองในรหัสของคุณ:

import Foo from './Foo';
import Bar from './Bar';

// without default
export {
  Foo,
  Bar,
}

แต่คุณสามารถทำได้ด้วยวิธีนี้:

// bundle.js
export { default as Foo } from './Foo'
export { default as Bar } from './Bar'
export { default } from './Baz'

// and import somewhere..
import Baz, { Foo, Bar } from './bundle'

การใช้ export

export const MyFunction = () => {}
export const MyFunction2 = () => {}

const Var = 1;
const Var2 = 2;

export {
   Var,
   Var2,
}


// Then import it this way
import {
  MyFunction,
  MyFunction2,
  Var,
  Var2,
} from './foo-bar-baz';

ข้อแตกต่างexport defaultคือคุณสามารถส่งออกบางสิ่งและใช้ชื่อที่คุณนำเข้า:

// export default
export default class UserClass {
  constructor() {}
};

// import it
import User from './user'

ฉันได้รับUnexpected tokenข้อผิดพลาดเมื่อกำลังสร้างexport Foo from './Foo'; export Bar from './Bar'
inostia

บันทึก @inostia นี้ ES6 ไวยากรณ์, คุณอาจจะต้อง "บาเบล" ที่จะสนับสนุน
webdeb

ฉันกำลังใช้บาเบล ฉันพบข้อผิดพลาดเมื่อคอมไพล์ด้วย webpack export { default as Foo } from './Foo';ฉันคิดว่าฉันต้องทำสิ่งที่ชอบ ฉันเคยเห็นที่อื่นแล้ว
inostia

@inostia ฉันยังประสบกับสิ่งนี้export { default as Foo } from './Foo';จำเป็นต้องส่งออกจริง
echolocation

17

หวังว่านี่จะช่วย:

// Export (file name: my-functions.js)
export const MyFunction1 = () => {}
export const MyFunction2 = () => {}
export const MyFunction3 = () => {}

// if using `eslint` (airbnb) then you will see warning, so do this:
const MyFunction1 = () => {}
const MyFunction2 = () => {}
const MyFunction3 = () => {}

export {MyFunction1, MyFunction2, MyFunction3};

// Import
import * as myFns from "./my-functions";

myFns.MyFunction1();
myFns.MyFunction2();
myFns.MyFunction3();


// OR Import it as Destructured
import { MyFunction1, MyFunction2, MyFunction3 } from "./my-functions";

// AND you can use it like below with brackets (Parentheses) if it's a function 
// AND without brackets if it's not function (eg. variables, Objects or Arrays)  
MyFunction1();
MyFunction2();

7

@ คำตอบของ webdeb ไม่ได้ผลสำหรับฉันฉันพบunexpected tokenข้อผิดพลาดเมื่อรวบรวม ES6 กับ Babel โดยใช้ชื่อการส่งออกเริ่มต้น

สิ่งนี้ใช้ได้สำหรับฉันอย่างไรก็ตาม:

// Foo.js
export default Foo
...

// bundle.js
export { default as Foo } from './Foo'
export { default as Bar } from './Bar'
...

// and import somewhere..
import { Foo, Bar } from './bundle'

3
// export in index.js
export { default as Foo } from './Foo';
export { default as Bar } from './Bar';

// then import both
import { Foo, Bar } from 'my/module';

-2

สำหรับการส่งออกอินสแตนซ์ของคลาสที่คุณสามารถใช้ไวยากรณ์นี้:

// export index.js
const Foo = require('./my/module/foo');
const Bar = require('./my/module/bar');

module.exports = {
    Foo : new Foo(),
    Bar : new Bar()
};

// import and run method
const {Foo,Bar} = require('module_name');
Foo.test();

4
นี่ไม่ใช่ไวยากรณ์ ES6
GerDner
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.