React本机的多重用途对父母类别定义的组件使用



以下是我在 common.js 文件中定义的标头的代码:

class HeaderStyle extends Component {
    render() {
        return (
            <Header style={{ elevation: 5 }}>
                <Left style={{ flex: 1 }}>
                    <Icon name="md-menu" size={30} onPress={() => this.props.navigation.openDrawer()} />
                </Left>
                <Body style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
                    <Image style={{ width: 80, height: 45, }} source={require('./resources/hr-pro-logo.png')} />
                </Body>
                <Right style={{ flex: 1 }}>
                    <Icon name="md-search" size={30} onPress={() => alert('hi there')} />
                </Right>
            </Header>
        );
    }
}

这是我的 dashboardscreen.js 的代码:

export default class DashboardScreen extends Component {
    render() {
        return (
            <View style={{ flex: 1 }}>
                <HeaderStyle /> // This is where I'm using the Header imported from common.js
                <View>
                    <FlatList
                        // Code to populate my list
                    />
                </View>
            </View>
        );
    }

我已经能够在仪表板中导入标头,但是当我单击菜单图标onPress={() => this.props.navigation.openDrawer()}时,它会引发错误undefined is not an object (evaluating '_this.props.navigation.openDrawer')

感谢它,如果有人可以帮助我解决这个问题,我希望能够单击菜单图标时打开抽屉。

fyi-当我直接在仪表板上使用标头代码时,该应用程序顺利运行而没有错误。但是,由于有多个屏幕要使用标头,因此我需要将其保留在一个共同的位置,以避免重复编码。

您必须将navigation Prop传递给您的组件:

<HeaderStyle navgation={this.props.navigation} />

或者,您可以使用React-Navigation的withNavigation函数:

import React from 'react';
import { Button } from 'react-native';
import { withNavigation } from 'react-navigation';
class MyBackButton extends React.Component {
  render() {
    return (
    //you Header render
    );
  }
}
// withNavigation returns a component that wraps MyBackButton and passes in the
// navigation prop
export default withNavigation(MyBackButton);

文档在这里

相关内容

  • 没有找到相关文章

最新更新