找不到模块:“ redux”

reactjs React.js

YOC60211911

2020-03-13

我已经使用create-react-appcli 创建了一个新的react应用程序然后我使用添加了'react-redux'npm install --save react-redux

package.json我有:

"react-redux": "^4.4.5"

不幸的是,该应用程序无法编译,并且抱怨:

Error in ./~/react-redux/lib/utils/wrapActionCreators.js
Module not found: 'redux' in C:\Users\Salman\Desktop\Courses\Internship\React\Youtube-Front-End\node_modules\react-redux\lib\utils

 @ ./~/react-redux/lib/utils/wrapActionCreators.js 6:13-29

我不知道这是什么意思?

这是完整的容器:

import React,{Component} from 'react';
import {connect} from 'react-redux';

class BookList extends Component{
  renderList(){
        return this.props.books.map((book)=>{
          <li key={book.title} >{book.title}</li>
        });
    }

  render(){

    return(
      <div>
        <ul>
          {this.renderList()}
        </ul>
      </div>
    );
  }
}

function mapStateToProps(state){
  return{
    books:state.books
  };
}

export default connect(mapStateToProps)(BookList);

这是完整的package.json

{
  "name": "Youtube-Front-End",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "react-scripts": "0.6.1",
    "webpack": "^1.13.2"
  },
  "dependencies": {
    "react": "^15.3.2",
    "react-dom": "^15.3.2",
    "react-redux": "^4.4.5",
    "youtube-api-search": "0.0.5"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

第1533篇《找不到模块:“ redux”》来自Winter(https://github.com/aiyld/aiyld.github.io)的站点

3个回答
AEva伽罗 2020.03.13

设置moduleResolution节点tsconfig.json

例:

  "compilerOptions": {
    "moduleResolution": "node"
  }
ProSam 2020.03.13

您需要安装react-redux但也要安装redux库。

npm install --save redux
A十三 2020.03.13

react-redux在内部使用Action, ActionCreator, AnyAction, Dispatch, Store这些接口的形式redux包。

你打的那一刻

export default connect(mapStateToProps,mapDispatchToProps)(App);

react-redux尝试利用redux软件包中的所有这些接口目前尚不存在。

因此,您可能必须同时安装react-redux软件包,redux因为两者都具有依赖性。

 npm install --save redux react-redux

问题类别

JavaScript Ckeditor Python Webpack TypeScript Vue.js React.js ExpressJS KoaJS CSS Node.js HTML Django 单元测试 PHP Asp.net jQuery Bootstrap IOS Android