ここに私のコードがあります:
store.js
import {createStore, applyMiddleware, compose} from 'redux';
import {fromJS} from 'immutable';
import {routerMiddleware} from 'react-router-redux';
import createSagaMiddleware from 'redux-saga';
import createReducer from './reducers';
const sagaMiddleware = createSagaMiddleware();
export default function configureStore(initialState = {}, history) {
// Create the store with two middlewares
// 1. sagaMiddleware: Makes redux-sagas work
// 2. routerMiddleware: Syncs the location/URL path to the state
const middlewares = [sagaMiddleware, routerMiddleware(history)];
const enhancers = [applyMiddleware(...middlewares)];
const store = createStore(createReducer, fromJS(initialState), enhancers);
// Extensions
store.runSaga = sagaMiddleware.run;
store.asyncReducers = {}; // Async reducer registry
return store;
}
Routes.js
import React from 'react';
import {Route, Router, IndexRoute, browserHistory} from 'react-router';
import {syncHistoryWithStore} from 'react-router-redux';
import store from './store';
import Welcome from './containers/Welcome';
const history = syncHistoryWithStore(browserHistory, store);
const routes = (
<Router history={history}>
<Route path="/">
<IndexRoute component={Welcome} />
</Route>
</Router>
);
export default routes;
Index.js
import React from 'react';
import ReactDOM from 'react-dom';
import {browserHistory} from 'react-router';
import { Providers } from 'react-redux';
import configureStore from './store';
import routes from './routes';
const initialState = {};
const store = configureStore(initialState, browserHistory);
ReactDOM.render(
<Provider store={store}>
{routes}
</Provider>, document.getElementById('main-content')
);
犯人がどこにいるかはわかりません。私はそれをデバッグしようとしましたが、本当にそれらのエラーを引き起こすものを見つけることができません。エラー:不明なTypeError:store.getStateは関数ではありません
解決策はありますか?
Routes.js
store
が適切に初期化されていません。次の行を追加する必要があります。
const initialState = {};
const store = configureStore(initialState, browserHistory);
あなたのindex.js
ファイル。
私はこれをしていました(動的な要求)..
const store = require('../store/app')
state = store.getState()
しかし、何らかの理由でrequire
の代わりにimport
を使用する場合、これを行う必要があります..
const store = require('../store/app')
state = store.default.getState()
これはエラーを生成したタイプミスです:TypeError: store.getState is not a function
間違った
const store = createStore(()=>[], {}, applyMiddleware);
正しい
const store = createStore(()=>[], {}, applyMiddleware());
追加された括弧()
on applyMiddleware
。
これが役立つかどうかはわかりませんが、react-reduxライブラリからの{Provider}の代わりにimport {Providers}という名前を付けました。