伟大的丑陋的笨蛋!这比需要的要难。
导出一个单位默认值
这是使用一个很好的机会传播(...
在{ ...Matters, ...Contacts }
下面:
// imports/collections/Matters.js
export default { // default export
hello: 'World',
something: 'important',
};
// imports/collections/Contacts.js
export default { // default export
hello: 'Moon',
email: 'hello@example.com',
};
// imports/collections/index.js
import Matters from './Matters'; // import default export as var 'Matters'
import Contacts from './Contacts';
export default { // default export
...Matters, // spread Matters, overwriting previous properties
...Contacts, // spread Contacts, overwriting previosu properties
};
// imports/test.js
import collections from './collections'; // import default export as 'collections'
console.log(collections);
然后,从命令行(从项目根目录/)运行babel编译的代码:
$ npm install --save-dev @babel/core @babel/cli @babel/preset-env @babel/node
(trimmed)
$ npx babel-node --presets @babel/preset-env imports/test.js
{ hello: 'Moon',
something: 'important',
email: 'hello@example.com' }
导出一棵树状默认值
如果您不想覆盖属性,请更改:
// imports/collections/index.js
import Matters from './Matters'; // import default as 'Matters'
import Contacts from './Contacts';
export default { // export default
Matters,
Contacts,
};
输出将是:
$ npx babel-node --presets @babel/preset-env imports/test.js
{ Matters: { hello: 'World', something: 'important' },
Contacts: { hello: 'Moon', email: 'hello@example.com' } }
导出多个已命名的导出,没有默认设置
如果您专用于DRY,则导入的语法也会更改:
// imports/collections/index.js
// export default as named export 'Matters'
export { default as Matters } from './Matters';
export { default as Contacts } from './Contacts';
这将创建2个没有默认导出的命名导出。然后更改:
// imports/test.js
import { Matters, Contacts } from './collections';
console.log(Matters, Contacts);
并输出:
$ npx babel-node --presets @babel/preset-env imports/test.js
{ hello: 'World', something: 'important' } { hello: 'Moon', email: 'hello@example.com' }
导入所有命名的出口
// imports/collections/index.js
// export default as named export 'Matters'
export { default as Matters } from './Matters';
export { default as Contacts } from './Contacts';
// imports/test.js
// Import all named exports as 'collections'
import * as collections from './collections';
console.log(collections); // interesting output
console.log(collections.Matters, collections.Contacts);
注意上一个示例中的解构 import { Matters, Contacts } from './collections';
。
$ npx babel-node --presets @babel/preset-env imports/test.js
{ Matters: [Getter], Contacts: [Getter] }
{ hello: 'World', something: 'important' } { hello: 'Moon', email: 'hello@example.com' }
在实践中
给定这些源文件:
/myLib/thingA.js
/myLib/thingB.js
/myLib/thingC.js
创建一个/myLib/index.js
将所有文件捆绑在一起的方法无法达到导入/导出的目的。首先,将所有内容全局化,而不是通过index.js“包装文件”通过导入/导出,将所有内容全局化。
如果需要特定文件,请import thingA from './myLib/thingA';
在自己的项目中。
仅在为npm打包或在多年的多团队项目中打包时,才为模块创建带有导出功能的“包装文件”。
到此为止了吗?有关更多详细信息,请参阅文档。
同样,对于Stackoverflow来说,最终支持三个`s作为代码围栏标记。