反应原生中未定义导航

时间:2018-04-22 15:55:09

标签: reactjs react-native

我对我的代码有一些疑问,我想通过使用以下代码导航到createMeetup屏幕,但它有错误。

enter image description here

这样的错误:

enter image description here

这是我的导航器:

enter image description here

需要帮助,非常感谢!

2 个答案:

答案 0 :(得分:0)

问题是...... navigate未定义。

加入navigation道具:

static navigationOptions = ({ navigation: { navigate } }) => ({
  title: ...
  ...
})

答案 1 :(得分:-1)

您应该像这样将导航添加到您的函数的道具中,请在此处输入代码

 function something (**{navigation}**){
          //function body.
        }