大家好,我一直在尝试动态导入,以便为使用 CRA(create-react-app)创建的应用程序渲染我的组件,虽然它在某些情况下完美运行,但对于某些情况,它返回无法加载模块错误,例如我加载了组件(放置在 src 下的目录中)在我的动态中index.js
工作正常,但是当我尝试在其中渲染子组件或嵌套组件时,它也使用动态导入方法给出错误无法加载模块。请注意,仅当嵌套组件放置在原始父组件的目录之外时才会发生此错误,这里是代码。
我的 index.js 放在 src 下。
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import './index.css';
class Dynamic extends Component {
constructor(props) {
super(props);
this.state = { module: null };
}
componentDidMount() {
console.log('in comp mount')
//alert("in comp mount")
const { path } = this.props;
import(`${path}`)
.then(module => this.setState({ module: module.default }))
}
render() {
console.log('in render')
// alert("in render")
const { module: Component } = this.state; // Assigning to new variable names @see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
return(
<div>
{Component && <Component path= '../FooterComp/Footer' />}
</div>
)
}
}
ReactDOM.render(<Dynamic path='./Components/FirstComponent' />, document.getElementById('root'));
FirstComponent.js 放在 src 下的 Components 目录下。
import React, { Component } from 'react';
import logo from '../logo.svg';
import '../FirstApp.css';
class App extends Component {
constructor(props) {
super(props);
this.state = { module: null };
}
componentDidMount() {
console.log('in comp mount')
//alert("in comp mount")
const { path } = this.props;
alert(path)
import(`${path}`)
.then(module => this.setState({ module: module.default }))
}
render() {
const { module: Component } = this.state;
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
{Component && <Component />}
</div>
);
}
}
export default App;
Footer.js 放在 src 下的 FooterComp 目录下。
import React, { Component } from 'react';
import '../App.css';
class Footer extends Component {
componentDidMount()
{
console.log('in componentDidMount of Footer')
}
render() {
console.log('in render of Footer')
return (
<div className="App">
<h1>Edited by Me</h1>
</div>
);
}
}
export default Footer;
index.js
当我从我的第一个组件中引用我的第一个组件但在尝试导入我的第一个组件时对页脚组件不起作用时,为什么这会起作用?
错误信息:Error: Cannot find module '../FooterComp/Footer'
另请注意,如果我将页脚组件放在与 Firstcomponent 相同的目录中并调整路径它工作正常