在reactjs中导出导入

时间:2017-08-17 21:11:29

标签: javascript reactjs

假设我的ui中有类Panels和class Panel。 我想在每次决定使用它时避免多个语句,例如import Panel.. and import Panels ...

相反,我想从Panel重新导出Panel一次,在我的应用程序中只是说import * from 'Panels.js'之类的内容,导致Panel和Panel出现在我的应用程序范围内。

这可能吗?关于这个主题的好教程?感谢。

2 个答案:

答案 0 :(得分:2)

您可以使用pip install -r requirements.txt

在您的代码中,您应该使用import * as Panels from 'Panels';Panels.Panel

  

请忘记,为了Panels.Panels他们,您需要export

答案 1 :(得分:1)

您可以从同一模块导入多个内容,如下所示:

import { Thing1 , Thing2 } from "module-name";

或者导入所有内容:

import * as everything from "module-name";

对于所有其他变体,请参阅:https://developer.mozilla.org/sv-SE/docs/Web/JavaScript/Reference/Statements/import