我正在学习redux,
我只想模拟从服务器获取数据,所以我使用setTimeout()
来处理它,
但是有错误
错误:动作必须是普通对象。使用自定义中间件进行异步 动作。
尽管我安装了redux-thunk
并不能解决问题!
这是代码
./ actions / userActions.js
const setName = name => {
return dispatch => {
setTimeout(() => {
dispatch({
type: 'SET_NAME',
payload: name,
});
}, 2000);
};
};
const setAge = age => {
return {
type: 'SET_AGE',
payload: age,
};
};
export {setName, setAge};
./ reducers / userReducers.js
const userReducer = (
state = {
name: 'Max',
age: 27,
},
action,
) => {
switch (action.type) {
case 'SET_NAME':
state = {
...state,
name: action.payload,
};
break;
case 'SET_AGE':
state = {
...state,
age: action.payload,
};
break;
}
return state;
};
export default userReducer;
./ store.js
import {applyMiddleware, combineReducers, compose, createStore} from 'redux';
import thunk from 'redux-thunk';
import mathReducer from '../reducers/mathReducer';
import userReducer from '../reducers/userReducer';
const store = createStore(
combineReducers(
{math: mathReducer, user: userReducer},
// applyMiddleware(thunk) not work :]
compose(applyMiddleware(thunk)), //same :]
),
);
export default store;
App.js
class App extends Component {
render() {
return (
<View style={styles.container}>
<Main changeUsername={() => this.props.setName('Oliver')} />
<User username={this.props.user.name} />
</View>
);
}
}
const mapStateToProps = state => {
return {
user: state.user, //user is a key == userReducer
math: state.math,
};
};
const mapDispatchToProps = dispatch => {
// to excute the actions we want to invok
return {
setName: name => {
dispatch(setName(name));
},
};
};
export default connect(mapStateToProps, mapDispatchToProps)(App);
答案 0 :(得分:2)
您正在传递applyMiddleware(thunk)
作为combinedReducers参数,它应该作为createStore的第二个参数传递。
const store = createStore(
combineReducers({math: mathReducer, user: userReducer}),
applyMiddleware(thunk)
);