在NavigatorIOS中调用onRightButtonPress的函数 - React Native

时间:2015-05-25 15:51:03

标签: javascript ios function react-native navigator

我在反应原生的NavigatorIOS中使用onRightButton。 我希望能够调用一个驻留在我正在推动的组件中的函数,但我无法知道如何实现它。 这是代码示例:

git fetch

我该怎么做?

2 个答案:

答案 0 :(得分:5)

ref回调道具是你的朋友! https://facebook.github.io/react/docs/more-about-refs.html#the-ref-callback-attribute

  goToResults() {
    this.props.navigator.push({
      component: SingleResultView,
      title: "SomeTitle",
      rightButtonIcon: require('image!mapsmarker'),
      passProps: {
        userPosition: this.props.userPosition,
        ref: this.onResultsRef,
      },
      onRightButtonPress: () => { this._resultsView && this._resultsView.foo(); }
    });
  }

  onResultsRef(resultsViewRef) {
    this._resultsView = resultsViewRef;
  }

答案 1 :(得分:0)

SingleResultView尚未实例化,因此您无法访问其方法。

以下方法可行:

this.props.navigator.push({
  onRightButtonPress: SingleResultView.prototype.foo
});