gpt4 book ai didi

reactjs - React - 不支持 src/之外的相对导入

转载 作者:行者123 更新时间:2023-12-05 06:23:18 26 4
gpt4 key购买 nike

我正在使用 React,并试图访问不在 src 目录中的资源,这会导致错误。

问题

是否可以访问 src 目录之外的 .js(即 index.js)文件?

我有以下目录结构:

- client
- src
- App.js
- data
- index.js

index.js

const ShiftList = [
{... data ...}
]

module.exports = { ShiftList }

App.js

import { ShiftList } from '../../data/index.js';

我收到以下错误:

./src/App.js Module not found: You attempted to import ../../data/index which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.

最佳答案

为此,您可以在 package.json 中执行以下操作

"dependencies": {
"app-b-dashboard": "file:./data/index"
}

然后你应该可以导入为

import Dashboard from 'app-b-dashboard/container' 

关于reactjs - React - 不支持 src/之外的相对导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58524990/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com