在ReactJs中没有导出的成员身份验证

时间:2018-03-15 17:14:25

标签: reactjs export components

我是React Programming的新手。 当我尝试导入“Auth”类导出为

export default class Auth 
<我的主页组件中的

import { AUTH_CONFIG } from './auth0-variables';

我收到错误“模块没有导出的成员为Auth

1 个答案:

答案 0 :(得分:1)

默认导出和命名导出之间存在差异。

对于默认导出,请在导入时省略括号。 import AuthConfig from './auth0-variables'应该有用。

您将使用括号导入命名导出。例如,如果您在某个模块中有export const myConst = 42,则可以将其导入为import { myConst } from './file.js

有关命名和默认导出的详细信息,请阅读export docs from MDN。有许多关于使用默认导出和命名导出的示例,以便更容易掌握它。