모듈을 찾을 수 없음 : 'redux'
create-react-app
cli를 사용하여 새로운 반응 애플리케이션을 만들었습니다 . 그런 다음을 'react-redux'
사용 하여 라이브러리를 추가했습니다 npm install --save react-redux
.
에서 package.json
I 있습니다 :
"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"
}
}
react-redux뿐만 아니라 redux 라이브러리도 설치해야합니다.
npm install --save redux
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
VSC (Visual Studio Code) IDE로 작업하는 동안 동일한 문제가 발생했습니다.
import { createStore, combineReducers, applyMiddleware } from 'redux';
The 'redux' package was being resolved from another places all together, as a dependency within some typescript packages.
I ran yarn add redux@3.7.2
(with the VSC terminal) to re-install the package. Note that i had the exact version within my package.json
as a dependency, and this helps yarn to link the dependencies faster since my goal was not to upgrade redux yet.
참고URL : https://stackoverflow.com/questions/40082477/module-not-found-redux
'Programing' 카테고리의 다른 글
IntelliJ UI를 기본값으로 재설정 (0) | 2020.11.07 |
---|---|
입력 문자열의 형식이 잘못되었습니다 (0) | 2020.11.07 |
Jest에서 throw 된 예외 유형을 테스트하는 방법 (0) | 2020.11.07 |
상태 머신 튜토리얼 (0) | 2020.11.07 |
Raspberry Pi의 화면 해상도를 변경하는 방법 (0) | 2020.11.07 |