我收到错误 TypeError:无法读取未定义的属性“navigation”。我不明白如何将导航组件传递给每个子组件,因此当用户按下项目时,它可以使用React Navigation导航到employeeEdit组件。如果这很明显,我是新手。
import React, { Component } from 'react';
import { FlatList } from 'react-native';
import { connect } from 'react-redux';
//import { R } from 'ramda';
import _ from 'lodash';
import { employeesFetch } from '../actions';
import { HeaderButton } from './common';
import ListEmployee from './ListEmployee';
class EmployeeList extends Component {
static navigationOptions = ({ navigation }) => ({
headerRight: (
<HeaderButton onPress={() => navigation.navigate('employeeCreate')}>
Add
</HeaderButton>
)
});
componentWillMount() {
this.props.employeesFetch();
}
keyExtractor(item) {
return item.uid;
}
renderItem({ item }) {
return <ListEmployee employee={item} navigation={this.props.navigation} />;
}
render() {
return (
<FlatList
data={this.props.employees}
renderItem={this.renderItem} // Only for test
keyExtractor={this.keyExtractor}
navigation={this.props.navigation}
/>
);
}
}
const mapStateToProps = (state) => {
const employees = _.map(state.employees, (val, uid) => ({ ...val, uid }));
return { employees };
};
export default connect(mapStateToProps, { employeesFetch })(EmployeeList);
这是ListEmployee的代码
import React, { Component } from 'react';
import {
Text,
StyleSheet,
TouchableWithoutFeedback,
View
} from 'react-native';
import { CardSection } from './common';
class ListEmployee extends Component {
render() {
const { employee } = this.props;
const { navigate } = this.props.navigation;
const { textStyle } = styles;
const { name } = this.props.employee;
return (
<TouchableWithoutFeedback onPress={() => navigate('employeeEdit', { employee })}>
<View>
<CardSection>
<Text style={textStyle}>{name}</Text>
</CardSection>
</View>
</TouchableWithoutFeedback>
);
}
}
/**
second argument in connect does 2 things. 1. dispatches all actions creators
return action objects to the store to be used by reducers; 2. creates props
of action creators to be used by components
**/
export default ListEmployee;
const styles = StyleSheet.create({
textStyle: {
fontSize: 18,
paddingLeft: 15,
}
});
答案 0 :(得分:3)
这是ES6常见的陷阱之一。不要为我的朋友担心,你只需要学习一次就可以再次避免它们。
长话短说,当你在React Component中声明一个方法时,将它设为箭头函数
所以,改变这一点。
renderItem({ item }) {
到这个
renderItem = ({ item }) => {
这应该解决你的问题,但由于一些不方便的原因,你只能访问&#34;这个&#34;如果您将方法声明为箭头函数,而不是正常声明。
在你的情况下,因为renderItem不是一个箭头函数,&#34;这个&#34;没有提到反应成分,因此&#34; this.props&#34;很可能是未定义的,这就是为什么它从
开始给你这个错误Cannot read property 'navigation' of undefined
this.props.navigation = (undefined).navigation
答案 1 :(得分:1)
在renderItem方法中,您可以管理当用户按下FlatList的一个项目时发生的事情:
renderItem({ item }) {
<TouchableOpacity onPress={() => { this.props.navigator.push({id: 'employeeEdit'})}} >
<ListEmployee employee={item} navigation={this.props.navigation} />
</TouchableOpacity>
}
希望对你有所帮助!
答案 2 :(得分:0)
导航示例
此处的VendorList是呈现的结构
<FlatList
numColumns={6}
data={state.vendoreList}
keyExtractor={(data) => data.id}
renderItem={({ item }) =>
<TouchableOpacity onPress={() => props.navigation.navigate("Home1")} >
<VendorList item={item} />
</TouchableOpacity>
}
/>
答案 3 :(得分:0)
在列表员工
const {navigation}= this.props.navigation;
这个用途
只需要修改这两行,我将文本加粗你需要做的更改