Module not found: Can't resolve 'axios' in

Module not found: Can't resolve 'axios' in

Failed to compile

./src/components/Header/index.js
Module not found: Can't resolve 'axios' in 'D:\E-File\News\news\src\components\Header'

This error occurred during the build time and cannot be dismissed.




import React, { Component, Fragment } from 'react';

import { Menu, Icon } from 'antd';

import axios from 'axios';

import logo from './logo.png';




class AppHeader extends Component {


    constructor(props) {

        super(props);

        this.state = {

            list: []

        }

    }


    getMenuItems() {

        return this.state.list.map(item => {

            return (

                <Menu.Item 

                key={item.id}

                icon={ item.icon }

                >

            {item.title}

            </Menu.Item>

            )

        })

    }


    componentDidMount() {

        axios.get('http://www.dell-lee.com/react/api/header.json')

            .then((res=> {

                this.setState({

                    list: res.data.data

                })

            })

    }


    render() {

        return (

            <Fragment>

                <img src={logo} className='app-header-logo'/>

                <Menu 

                    mode="horizontal" 

                    className='app-header-menu'

                >

            { this.getMenuItems() }

          </Menu>

      </Fragment>

        )

    }

}


export default AppHeader;


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕慕子 2021-03-09 10:11:23

​同学你好,报错信息是找不到axios,可以在命令行执行npm install --save axios 命令,安装axios依赖,之后再启动项目测试下。

祝学习愉快~

  • 提问者 慕粉2340524060 #1

    http://img1.sycdn.imooc.com//climg/6046dc9b0963bfd507910078.jpg

    2021-03-09 10:25:32
  • 好帮手慕慕子 回复 提问者 慕粉2340524060 #2

    同学你好,截图表示axios依赖正在下载中,可以耐心等待一会儿,下载完成之后,执行npm run start命令,重新启动项目再测试下。

    祝学习愉快~

    2021-03-09 12:04:20
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星

相似问题

登录后可查看更多问答,登录/注册

请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师