最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ES6 default and named exports - Stack Overflow

programmeradmin1浏览0评论

I am trying to understand named and default exports. I have a seemingly basic requirement which I don't understand how to setup.

I want to be able to import both:

//app.js
import Mod from './my-module'
import { funcA, funcB } from './my-module'

console.log('A', Mod.funcA(), funcA()); // A a a
console.log('B', Mod.funcB(), funcB()); // A a a

When I try, the closest way of doing this I get to is the following:

//my-module.js
export function funcA() { return 'a'; };
export function funcB() { return 'b'; };

export default {funcA, funcB}

My trouble is that I don't want to reindex each functions in the default export. I just want to define my functions and then make sure they are exported so I can use them either way.

Suggestions? Or do I have to use import * as Mod from './my-module';?

I am trying to understand named and default exports. I have a seemingly basic requirement which I don't understand how to setup.

I want to be able to import both:

//app.js
import Mod from './my-module'
import { funcA, funcB } from './my-module'

console.log('A', Mod.funcA(), funcA()); // A a a
console.log('B', Mod.funcB(), funcB()); // A a a

When I try, the closest way of doing this I get to is the following:

//my-module.js
export function funcA() { return 'a'; };
export function funcB() { return 'b'; };

export default {funcA, funcB}

My trouble is that I don't want to reindex each functions in the default export. I just want to define my functions and then make sure they are exported so I can use them either way.

Suggestions? Or do I have to use import * as Mod from './my-module';?

Share Improve this question asked Apr 12, 2016 at 10:03 mraxusmraxus 1,4431 gold badge16 silver badges23 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

You can omit the default export and use import as syntax:

//app.js
import * as Mod from './my-module'
import { funcA, funcB } from './my-module'

console.log('A', Mod.funcA(), funcA()); // A a a
console.log('B', Mod.funcB(), funcB()); // B b b
//my-module.js
export function funcA() { return 'a'; };
export function funcB() { return 'b'; };

Import entire module's contents once using * as name:

import * as Mod from './my-module';

Then assign them to separate constants using destructuring:

const { funcA, funcB } = Mod;

For export just use the named exports:

export function funcA() { return 'a'; };
export function funcB() { return 'b'; };
发布评论

评论列表(0)

  1. 暂无评论