Heim > Fragen und Antworten > Hauptteil
Ich versuche, eine Datei aus einem anderen Ordner zu importieren Aber ich bekomme diesen Fehler
./src/components/Body/index.js Module not found: Can't resolve '../../context' in '/home/workspace/reactjs/coding-practices/layoutBuilder/src/components/Body'
Ich habe es versucht:
import ConfigurationContext from '../../context' import ConfigurationContext from './../context'
Ich Body>index.js
想要从 context>ConfigurationContext.js
importiere Objekte
Bitte helfen Sie, dieses Problem zu lösen
P粉5510842952024-04-05 00:17:35
试试这个
import ConfigurationContext from './../../context/ConfigurationContext'
因为您没有在路径中提及文件名。