美文网首页
[React Native Error]undefined is

[React Native Error]undefined is

作者: laznrbfe | 来源:发表于2016-07-18 20:28 被阅读191次

使用Redux报错

undefined is not an object (evaluating 'reducerX.yyy')
Unhandled JS Exception: undefined is not an object (evaluating 'reducerX.yyy')
Redux_Error.png

解决:在对应的组件加上

function mapStateToProps(state) {
  const { reducerX } = state;
  return {
    reducerX
  }
}

export default connect(mapStateToProps)(组件名)

相关文章

网友评论

      本文标题:[React Native Error]undefined is

      本文链接:https://www.haomeiwen.com/subject/fdfmjttx.html