Import JSON file in React

前端 未结 11 1073
遥遥无期
遥遥无期 2020-11-28 06:05

I\'m new to React and I\'m trying to import a JSON DATA variable from an external file. I\'m getting the following error:

Cannot find mo

11条回答
  •  孤独总比滥情好
    2020-11-28 07:06

    One nice way (without adding a fake .js extension which is for code not for data and configs) is to use json-loader module. If you have used create-react-app to scaffold your project, the module is already included, you just need to import your json:

    import Profile from './components/profile';
    

    This answer explains more.

提交回复
热议问题