redux-dev-tools显示正常,但是打印userInfo是空对象
来源:8-1 路由介绍
PARADISELIN
2017-06-18
写回答
2回答
-
你是怎么打印的,把关键代码贴出来看看
052017-06-18 -
PARADISELIN
提问者
2017-06-18
class City extends Component { // static propTypes = { // // } componentDidMount() { console.log(this.props.userInfo) // 这个显示空对象 console.log(this.props.userInfoActions) // 这个显示正常 } render() { return( <div> <Header /> </div> ) } } function mapStateToProps(state) { return { userInfo: state.userInfo } } function mapDispatchToProps(dispatch) { return { userInfoActions: bindActionCreators(userInfoActionsFromOtherFile,dispatch) } } export default connect(mapStateToProps, mapDispa
012017-06-18
相似问题