Eksportuj wiele klas w modułach ES6


150

Próbuję utworzyć moduł, który eksportuje wiele klas ES6. Powiedzmy, że mam następującą strukturę katalogów:

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

Foo.jsi Bar.jskażdy eksportuje domyślną klasę ES6:

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

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

Obecnie mam index.jstaką konfigurację:

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

export default {
  Foo,
  Bar,
}

Jednak nie mogę zaimportować. Chcę móc to zrobić, ale nie znaleziono zajęć:

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

Jaki jest prawidłowy sposób eksportowania wielu klas w module ES6?


5
po prostu użyj exportbez wartości domyślnej
webdeb

Możesz mieć tylko jeden defaulteksport. Wyobraź sobie, że ktoś próbowałby to zrobić import SomeClass from 'my/module'. Spowoduje to automatyczne zaimportowanie defaultmodułu z tej ścieżki. Gdybyś miał tam wiele domyślnych eksportów, skąd wiedziałoby, który z nich zaimportować?
saadq

Odpowiedzi:


258

Spróbuj tego w swoim kodzie:

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

// without default
export {
  Foo,
  Bar,
}

Przy okazji możesz to również zrobić w ten sposób:

// 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'

Za pomocą 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';

Różnica export defaultpolega na tym, że możesz coś wyeksportować i zastosować nazwę tam, gdzie to importujesz:

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

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

Otrzymuję Unexpected tokenbłąd podczas budowaniaexport Foo from './Foo'; export Bar from './Bar'
inostia

@inostia uwaga, to jest składnia ES6, prawdopodobnie potrzebujesz „babel” do jej obsługi
webdeb

Używam Babel. Otrzymałem ten błąd podczas kompilacji z pakietem webpack. Myślę, że muszę zrobić coś takiego export { default as Foo } from './Foo';. Widziałem to gdzie indziej
inostia

@inostia też tego doświadczam, export { default as Foo } from './Foo';był wymagany do faktycznego wyeksportowania.
echolokacja

17

Mam nadzieję że to pomoże:

// 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

Odpowiedź @ webdeb nie działa dla mnie, napotkałem unexpected tokenbłąd podczas kompilowania ES6 z Babel, wykonując nazwane domyślne eksporty.

U mnie to jednak zadziałało:

// 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

Aby wyeksportować instancje klas, możesz użyć następującej składni:

// 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
to nie jest składnia ES6
GerDner
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.