web-dev-qa-db-ja.com

別のディレクトリにコンポーネントをインポートしようとすると、動的インポートが動作しない

こんにちは、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と同じディレクトリに配置してパスを調整すると、正しく機能することにも注意してください

4
JayD

FooterCompがsrcの下にある場合、パスは'./FooterComp/Footer'ない'../FooterComp/Footer'


編集

Index.js

    render() {
          console.log('in render')
         // alert("in render")
        const { module: Component } = this.state; 
        return(
          <div>
            {Component && <Component path='./Components/FirstComponent' />}
          </div>
        )
      }
    }

ReactDOM.render(<Dynamic />, document.getElementById('root'));

FirstComponent.js

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 path= '../FooterComp/Footer' />}
      </div>
    );
  }
0
Derf Mongrel