0

Component当我尝试通过组件加载新组件时,会显示标题中显示的错误Navigator

我的带有 Navigator 组件的视图如下所示:

render(){
    return(
      <Navigator
        initialRoute={{name: 'Feed', component: Feed}}
        renderScene={(route, navigator) => {
            if(route.component){
              return React.createElement(route.component, {navigator, ...this.props})
            }
          }
        }
      />
    )
  }
}

initialRoute 完美呈现正确的视图。被渲染的子组件Feed包含一个按钮列表,这些按钮更新导航器并使其渲染一个新组件,如下所示:

  updateRoute(route){
    this.props.globalNavigator(route)
    this.props.navigator.push({
      name: route.displayLabel,
      component: route.label
    })
  }

  render(){
    return(
      <View style={styles.bottomNavSection}>
        {
          this.state.navItems.map((n, idx) => {
            return(
              <TouchableHighlight
                key={idx}
                style={this.itemStyle(n.label, 'button')}
                onPress={this.updateRoute.bind(this, n)}
              >
                <Text
                  style={this.itemStyle(n.label, 'text')}
                >
                  {n.displayLabel}
                </Text>
              </TouchableHighlight>
            )
          })
        }
      </View>
    )
  }

请注意,function updateRoute(route)接收新组件的名称如下:onPress={this.updateRoute.bind(this, n)}. 例如,n等于{displayLabel: 'Start', label: 'Feed', icon: ''},

编辑 我的 Profil.js 组件的内容:

import React, { Component } from 'react'
import ReactNative from 'react-native'
import API from '../lib/api'

import BottomNavigation from '../components/BottomNavigation'

const {
  ScrollView,
  View,
  Text,
  TouchableHighlight,
  StyleSheet,
} = ReactNative

import { connect } from 'react-redux'

class Profil extends Component {

  constructor(props){
    super(props)
  }

  render(){
    return(
      <View style={styles.scene}>
        <ScrollView style={styles.scrollSection}>
          <Text>Profil</Text>
        </ScrollView>
        <BottomNavigation {...this.props} />
      </View>
    )
  }
}

const styles = StyleSheet.create({
  scene: {
    backgroundColor: '#0f0f0f',
    flex: 1,
    paddingTop: 20
  },
  scrollSection: {
    flex: .8
  }
})

function mapStateToProps(state){
  return {
    globalRoute: state.setGlobalNavigator.route
  }
}

export default connect(mapStateToProps)(Profil)
4

2 回答 2

2

问题是onPress={this.updateRoute.bind(this, n)}没有包含正确的组件引用,而是包含组件名称作为字符串。

通过更改功能修复它:

 updateRoute(route){
    this.props.globalNavigator(route)
    this.props.navigator.push({
      name: route.displayLabel,
      component: route.component
    })
  }

并使用组件引用增强状态并在文档开头导入组件。

this.state = { 
   navItems: [
      {displayLabel: 'Start', label: 'Feed', icon: start, component: Feed},
   ]
}
于 2016-12-27T12:09:58.523 回答
0

我认为您忘记导出组件。

于 2016-12-27T10:51:26.640 回答