Gru*_*und 9 reactjs immutable.js redux react-redux
您好我使用Immuteble Map for state,当我尝试maspStateToProps时,我有这个错误.
Uncaught Invariant Violation:
mapStateToProps必须返回一个对象.而是收到Map {}.
这是我的代码:
零件:
const mapStateToProps = (state) => {
return state
}
class LoanCalculator extends React.Component{
componentWillMount(){
this.dispatch(loadConstraints());
}
render(){
return (
<div>
<h1> Loan Calculator </h1>
<SlidersBox {...this.props}/>
</div>
)
}
}
LoanCalculator = connect(
mapStateToProps
)(LoanCalculator)
export default LoanCalculator
Run Code Online (Sandbox Code Playgroud)
减速器
import { Map } from 'immutable'
import {LOAD_CONSTRAINTS, SET_AMOUNT_VALUE, SET_TERM_VALUE} from "../actions/actions";
const initialState = new Map();
export default function calculator(state = initialState, action){
switch (action.type){
case LOAD_CONSTRAINTS:
return state.set("constraints", action.constraints)
case SET_AMOUNT_VALUE:
return state.set("selectedAmount", action.amount)
case SET_TERM_VALUE:
return state.set("selectedTerm", action.term)
default:
return state
}
}
Run Code Online (Sandbox Code Playgroud)
Cal*_*den 16
这个github问题涵盖了这个确切的问题:https://github.com/reactjs/react-redux/issues/60.
您可以在mapStateToProps函数中手动从Map中提取所需的值:
const mapStateToProps = (state) => {
return {
constraints: state.get('constraints'),
selectedAmount: state.get('selectedAmount'),
selectedTerm: state.get('selectedTerm'),
};
}
Run Code Online (Sandbox Code Playgroud)