1. ホーム
  2. javascript

[解決済み] createStore()にinitialStateを指定したにもかかわらず、「Reducer [...] returned undefined during initialization」と表示されるのはなぜですか?

2022-02-13 19:38:44

質問

reduxのcreateStoreメソッドでInitialStateを設定し、第2引数でInitialStateに対応させました。

ブラウザでエラーになります。

<code>Uncaught Error: Reducer "postsBySubreddit" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined.</code>

のコードはこちらです。

import { createStore, applyMiddleware } from 'redux'
import thunkMiddleware from 'redux-thunk'
import createLogger from 'redux-logger'
import rootReducer from '../reducers/reducers'
import Immutable from 'immutable'
const loggerMiddleware = createLogger()
//const initialState=0
function configureStore() {
    return createStore(
    rootReducer,
     {postsBySubreddit:{},selectedSubreddit:'reactjs'},
     applyMiddleware(
     thunkMiddleware,
    loggerMiddleware
  )
 )
}
  export default configureStore

を起動し configeStore メソッドを Root.js :

 import React, { Component } from 'react'
 import { Provider } from 'react-redux'
 import configureStore from '../store/configureStore'
 import AsyncApp from './AsyncApp'
 import Immutable from 'immutable'
 const store = configureStore()
 console.log(store.getState())
 export default class Root extends Component {
 render() {
   return (
     <Provider store={store}>
       <AsyncApp />
     </Provider>
  )
 }
}

ということなのでしょうが、この initateState は何か間違っています。

import { combineReducers } from 'redux'
import {reducerCreator} from '../utils/creator'
import Immutable from'immutable'
import {SELECT_SUBREDDIT, INVALIDATE_SUBREDDIT ,REQUEST_POSTS, RECEIVE_POSTS} from '../actions/action'
let initialState=Immutable.fromJS({isFetching: false, didInvalidate: false,items:[]})

function selectedSubreddit(state, action) {
  switch (action.type) {
  case SELECT_SUBREDDIT:
    return action.subreddit
  default:
    return state
  }
}
function postsBySubreddit(state, action) {
  switch (action.type) {
    case INVALIDATE_SUBREDDIT:
    case RECEIVE_POSTS:
    case REQUEST_POSTS:
      return Object.assign({}, state, {
        [action.subreddit]: posts(state[action.subreddit], action)
      })
    default:
      return state
  }
}
function posts(state=initialState,action) {
  switch (action.type) {
    case INVALIDATE_SUBREDDIT:
      return state.merge({
        didInvalidate: true
      })
    case REQUEST_POSTS:
      return state.merge({
        isFetching: true,
        didInvalidate: false
      })
    case RECEIVE_POSTS:
      return state.merge({
        isFetching: false,
        didInvalidate: false,
        items: action.posts,
        lastUpdated: action.receivedAt
      })
    default:
      return state 
    }
}

const rootReducer = combineReducers({
  postsBySubreddit,
 selectedSubreddit
})
export default rootReducer

を設定しても initialState を各サブ・リデューサーに入れると、正常に単語が入力されるようになりました。何か問題があるのでしょうか?

解決方法は?

その initialState の引数は createStore() がよく引っかかる。これは、アプリケーションの状態を手動で「初期化」するためのものではありません。唯一有用な用途は

  • JSON ステートペイロードからサーバーレンダリングされたアプリを起動する。
  • ローカルストレージに保存された状態からアプリを "再開 "する。

を決して書かないことを暗黙の了解としています。 initialState は手動で、ほとんどのアプリでは使うことすらありません。その代わり、リデューサーは常に自分自身の初期状態を指定する必要があり initialState は、既存のシリアル化されたバージョンがあるときに、そのステートをプリフィルするための方法に過ぎません。

そこで この答え は正しいです:あなた 必要 を使用して、reducer で初期状態を定義します。それを createStore() は十分ではありませんし、コードで初期状態を定義するためのものではありません。