反应本机路由器流量道具未通过操作

时间:2019-03-07 13:57:04

标签: react-native react-native-router-flux

我正在尝试通过按钮传递一些数据

   <Button
                text="Explore"
                elementStyles={secondaryButton}
                onPress={() => Actions.dashboard({
                  demoMode: true,
                })}
                testID="button-explore"
              />

位于Example.js中,到Dashboard.js

这是我位于App.js下的路由器堆栈

<Stack key="root" hideNavBar>
              <Scene key="splash" initial component={SplashScreen} />
              ....
              <Scene key="example" component={example} />
              ....

              <Tabs key="tabbar" hideNavBar tabBarPosition="bottom" showLabel={false} tabBarStyle={styles.tabBar} swipeEnabled={false} animationEnabled={false}>
                <Scene key="dashboard" hideNavBar title="Dashboard" component={Dashboard} icon={TabBarItem} defaultIcon={Config.HOME_ICON_NAME} />
                <Scene key="history" hideNavBar title="Stats" component={History} icon={TabBarItem} defaultIcon={Config.STATS_ICON_NAME} />
                <Scene key="rewards" hideNavBar title="Points" component={Rewards} icon={TabBarItem} defaultIcon={Config.REWARDS_ICON_NAME} />
                <Scene key="profile" hideNavBar title="Profile" component={Profile} icon={TabBarItem} defaultIcon={Config.PROFILE_ICON_NAME} />
              </Tabs>
 />

            </Stack>

当我在信息中心下调用this.props.demoMode时,我将无法定义。

1 个答案:

答案 0 :(得分:1)

您好,请在第二个屏幕键之前添加_

onPress={() => Actions._dashboard({
              demoMode: true,
            })}

类似的东西,但是如果不起作用,请删除您的节点模块文件夹,更改路由器流量版本,再次使用npm i,您会很好的