从抽屉导航器响应本机传递值

时间:2019-02-28 14:10:28

标签: navigator drawer

在App.js中

const MyApp = createDrawerNavigator({
    Home: {
        screen: Home
    },

    Form: {
        screen: Form // how to pass value Id = 0
    },
    {
      ....
     }
})

在Form.js中

componentDidMount() {
    if (this.props.navigation.getParam('Id', 1) !== 0) {
        ...
    }
    else {
        ...
    }
}

有人可以告诉我如何实现吗?

预先感谢

1 个答案:

答案 0 :(得分:0)

使用屏幕道具:

find_all()

soup.find_all('a', href=True) 中,您需要使用{... props}传递所有道具,以便导航正常工作。

然后,您可以从“表单”屏幕访问道具,并根据用例使用它。