web-dev-qa-db-ja.com

mapStateToPropsはオブジェクトを返す必要があります。代わりにマップ{}を受け取りましたか?

こんにちは、状態にImmuteble Mapを使用しています。maspStateToPropsを試したところ、このエラーが発生しました。

キャッチされない不変の違反:mapStateToPropsはオブジェクトを返す必要があります。代わりにマップ{}を受け取りました。

これが私のコードです:

成分:

    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

還元剤

    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
      }
    }
9
Grund

このgithubの問題はこの正確な問題をカバーしています: https://github.com/reactjs/react-redux/issues/6

MapStateToProps関数のMapから必要な値を手動で抽出できます。

const mapStateToProps = (state) => {
  return {
       constraints: state.get('constraints'),
       selectedAmount: state.get('selectedAmount'),
       selectedTerm: state.get('selectedTerm'),
  };
}
16
Calvin Belden