我在redux Devtools和console.log()上遇到问题。
我可以在Redux DevTools中看到我的对象: https://image.noelshack.com/fichiers/2019/18/6/1557004256-capture-d-ecran-du-2019-05-04-22-10-33.png
和我的console.log在顶部空白: https://image.noelshack.com/fichiers/2019/18/6/1557004421-capture-d-ecran-du-2019-05-04-23-00-50.png
我的渲染代码:
const { user, users } = this.props;
console.log(users)
我的调度:
componentDidMount() {
this.props.dispatch(userActions.getAll());
}
我的mapStateToProps(不是ES6):
function mapStateToProps(state) {
const { authentication, users } = state;
const { user } = authentication;
return {
user,
users,
};
}
你能帮我吗?