如何将状态映射到redux中的props in react native

时间:2017-05-05 05:45:55

标签: android reactjs react-native redux react-redux

您好我正在阅读本教程https://www.packtpub.com/books/content/how-get-started-redux-react-native,其中有人解释了本地应用程序中redux的用例。好吧,我在那里找到了东西,但我看到了

在类Login.js中没有定义

userReducers我不确定它被引用的位置。

任何人都可以帮助我吗?不应该state.user代替user.userReducers.user

enter image description here

1 个答案:

答案 0 :(得分:2)

这是因为在创建redux商店时,在index.ios.js文件中,您将这些数据命名为userReducers

take a look at line 10 where you are creating the store with the reducers.

根据您要创建商店的第10行,userReducers添加的所有状态变量都将在state.userReducers下提供。