admin管理员组文章数量:1405337
Hi guys I'm trying to make my code more readable and pragmmatic.
Using redux-saga in React Native I'm getting some issues.
When I try to load the app I get the error:
TypeError: store.getState is not a function
This error is located at:
in Connect(Reprov) (at App.js:17) in RCTView (at View.js:44) in Provider (at App.js:14) in App (at renderApplication.js:34) in RCTView (at View.js:44) in RCTView (at View.js:44) in AppContainer (at renderApplication.js:33)
src/store/configureStore.js
import {createStore, applyMiddleware} from 'redux'
import createSagaMiddleware from 'redux-saga';
import rootReducer from '../reducers';
import rootSaga from '../sagas';
export default function () {
const sagaMiddleware = createSagaMiddleware();
const store = createStore(
rootReducer,
applyMiddleware(sagaMiddleware)
);
sagaMiddleware.run(rootSaga)
return store;
}
src/App.js
import React, {Component} from 'react'
import { View } from 'react-native';
import { Provider } from 'react-redux';
import AppNavigation from './Navigation';
import store from './store/configureStore';
import Reproof from './screens/Reprov';
import Approval from './screens/Aprov';
import PushNotificationController from './ponents/Push';
class App extends Component {
render() {
return (
<Provider store={store}>
<View style={{ flex: 1 }}>
<AppNavigation />
<Reproof />
<Approval />
<PushNotificationController />
</View>
</Provider>
)
}
}
export default App;
I don't know what I'm doing wrong...
Hi guys I'm trying to make my code more readable and pragmmatic.
Using redux-saga in React Native I'm getting some issues.
When I try to load the app I get the error:
TypeError: store.getState is not a function
This error is located at:
in Connect(Reprov) (at App.js:17) in RCTView (at View.js:44) in Provider (at App.js:14) in App (at renderApplication.js:34) in RCTView (at View.js:44) in RCTView (at View.js:44) in AppContainer (at renderApplication.js:33)
src/store/configureStore.js
import {createStore, applyMiddleware} from 'redux'
import createSagaMiddleware from 'redux-saga';
import rootReducer from '../reducers';
import rootSaga from '../sagas';
export default function () {
const sagaMiddleware = createSagaMiddleware();
const store = createStore(
rootReducer,
applyMiddleware(sagaMiddleware)
);
sagaMiddleware.run(rootSaga)
return store;
}
src/App.js
import React, {Component} from 'react'
import { View } from 'react-native';
import { Provider } from 'react-redux';
import AppNavigation from './Navigation';
import store from './store/configureStore';
import Reproof from './screens/Reprov';
import Approval from './screens/Aprov';
import PushNotificationController from './ponents/Push';
class App extends Component {
render() {
return (
<Provider store={store}>
<View style={{ flex: 1 }}>
<AppNavigation />
<Reproof />
<Approval />
<PushNotificationController />
</View>
</Provider>
)
}
}
export default App;
I don't know what I'm doing wrong...
Share asked Oct 14, 2018 at 13:18 Wes GuirraWes Guirra 1933 silver badges15 bronze badges1 Answer
Reset to default 7You are importing the store as a variable and in the file,it is a function :
import store from './store/configureStore';
try this :
import configureStore from './store/configureStore';
then create a variable store
const store = configureStore();
本文标签: javascriptReact Native TypeError storegetState is not a functionStack Overflow
版权声明:本文标题:javascript - React Native TypeError store.getState is not a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744884814a2630424.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论