如何将对 Navigator 的引用传递给 renderScene?

How do I pass reference to Navigator into renderScene?

我一直在尝试使用 React Native,但我无法将对导航器的引用传递到我正在渲染的场景中。没有导航器,NewsList 项目无法触发场景更改。

render: function() {
    return (
        <Navigator
            initialRoute={ { name: 'NewsList', index: 0 } }
            renderScene={ ( route, navigator ) => NewsList }
        />                                                      
    );                                                          
},

同样,在渲染场景函数中,我需要将导航器传递给行渲染函数。

<UIExplorerPage noSpacer={true} noScroll={true}>
    <ListView
        dataSource={this.state.dataSource}
        renderRow={this._renderRow}
        onEndReached={this.onEndReached}
    />
</UIExplorerPage>

像这样传递引用的惯用方法是什么?

如果我没有正确理解你的问题,你的意思是你的新闻列表项组件需要引用 navigator 才能触发导航事件。这(IMO)是错误的方法。

相反,将回调传递给列表项。回调是父新闻列表组件上的一个方法,它已经有一个可以调用的导航器的引用。通过这种方式,您可以避免将导航器一直传递到组件层次结构中。

如果不清楚,我可以给出一个代码示例:)

就像 Colin 提到的,您需要将回调传递给您的列表项。下面给出的是 React Native 本身的示例项目 (UIExplorer) 中的代码。

在这里,我们将 navigator 对象传递给作为列表组件的 NavMenu。

var TabBarExample = React.createClass({
    // Other methods... blah blah
    renderScene: function(route, nav) {
        switch (route.id) {
          case 'navbar':
            return <NavigationBarSample navigator={nav} />;
          case 'breadcrumbs':
            return <BreadcrumbNavSample navigator={nav} />;
          case 'jumping':
            return <JumpingNavSample navigator={nav} />;
          default:
            return (
              <NavMenu
                message={route.message}
                navigator={nav}
                onExampleExit={this.props.onExampleExit}
              />
            );
        }
    },

    render: function() {
        return (
          <Navigator
            style={styles.container}
            initialRoute={{ message: "First Scene", }}
            renderScene={this.renderScene}
            configureScene={(route) => {
              if (route.sceneConfig) {
                return route.sceneConfig;
              }
              return Navigator.SceneConfigs.FloatFromBottom;
            }}
          />
        );
      }
});

在 NavMenu 组件中,我们在每个 NavButton 的 onPress 上传递回调。

class NavMenu extends React.Component {
  render() {
    return (
      <ScrollView style={styles.scene}>
        <Text style={styles.messageText}>{this.props.message}</Text>
        <NavButton
          onPress={() => {
            this.props.navigator.push({
              message: 'Swipe right to dismiss',
              sceneConfig: Navigator.SceneConfigs.FloatFromRight,
            });
          }}
          text="Float in from right"
        />
        <NavButton
          onPress={() => {
            this.props.navigator.push({
              message: 'Swipe down to dismiss',
              sceneConfig: Navigator.SceneConfigs.FloatFromBottom,
            });
          }}
          text="Float in from bottom"
        />
        // Omitted rest of the NavButtons.
      </ScrollView>
     );
}

这里有一个 link 的例子。

这个问题措辞有点含糊。我通过向 UIExplorerPage 添加导航器解决了我的问题,例如 <UIExplorerPage navigator={navigator} />。可以使用 this.props.

在 UIExplorerPage 中访问属性