在访问组件时需要帮助

时间:2019-01-24 00:43:10

标签: javascript reactjs

我是编程和反应的新手,我在App [第16行]上有一个名为App的组件,我正在尝试通过键入import Gallery from "/Gallery"导入一个名为Gallery的组件,但这不起作用,这是屏幕截图

Can't import Gallery Component

3 个答案:

答案 0 :(得分:4)

您的Gallery文件位于Components文件夹内,因此您需要提供组件的确切路径,在这种情况下为'./Components/Gallery'

答案 1 :(得分:2)

您的路径错误。它应该是./Components/Gallery,因为它与当前组件位于同一文件夹中。 /Gallery一直到根。

答案 2 :(得分:2)

这不是特定于React的,它是ES6模块的导入。

应用程序与图库不在同一个文件夹中,因此您需要指定路径。尝试import Gallery from './Components/Gallery'

检查http://exploringjs.com/es6/ch_modules.html以获得更多信息。