我在反应原生的NavigatorIOS中使用onRightButton。 我希望能够调用一个驻留在我正在推动的组件中的函数,但我无法知道如何实现它。 这是代码示例:
git fetch
我该怎么做?
答案 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
});