我在组件中有一个函数作为道具,我必须将此函数道具传递给FlastList中renderItem中的另一个组件。怎么做?这是我的代码。
import React, { Component } from 'react';
import { View } from 'native-base';
import PropTypes from 'prop-types';
import { FlatList } from 'react-native';
import AddPlayers from '../AddPlayers/AddPlayers';
import League from '../League/League';
export default class InviteLeagues extends Component {
static propTypes = {
invitedLeagues: PropTypes.Array,
label: PropTypes.string.isRequired,
InvitedLeaguesList: PropTypes.Array,
onPress: PropTypes.func.isRequired
};
static defaultProps = {
InvitedLeaguesList: [
{ name: 'Howdy', createdBy: 'email1@gamil.com', status: 'Join' },
{ name: 'Lorem', createdBy: 'email@gmail.com', status: 'Join' }
]
};
renderLeague(item) {
return <League invitedLeague={item} />;
}
render() {
return (
<View {...this.props}>
<AddPlayers
label={this.props.label}
labelStyle={{ fontStyle: 'italic' }}
/>
<FlatList
numColumns={1}
data={this.props.InvitedLeaguesList}
renderItem={this.renderLeague}
/>
</View>
);
}
}
现在我必须将onPress
(函数属性)传递给League
组件
我尝试过这样
<FlatList
numColumns={1}
data={this.props.InvitedLeaguesList}
renderItem={this.renderLeague}
extraData={this.props}
/>
renderLeague(item) {
return <League invitedLeague={item} onPress={this.props.onPress} />;
}
答案 0 :(得分:2)
这种方式对我有用
<FlatList
numColumns={1}
data={this.props.InvitedLeaguesList}
renderItem={({ item }) => <League invitedLeague={item} onPress={this.props.onPress} />}
extraData={this.props}
/>
答案 1 :(得分:2)
您可以将props作为参数传递给呈现平面列表项目的函数,如下所示:
<FlatList
numColumns={1}
data={this.props.InvitedLeaguesList}
renderItem={(item) => this.renderLeague(item, this.props)}
/>
,您可以在renderLeague
函数中使用此参数:
renderLeague({item}, props) {
...
}
该props变量包含props的所有参数,因为您可以在其他地方使用this.props
。
答案 2 :(得分:1)
我认为您尝试使用callBack
函数,
如果是这样,请执行以下操作。
renderLeague(item) {
return <League invitedLeague={item} onPress={this._callBack.bind(this)} />;
}
//callback function
_callBack(data) {
// your code here...
}
从您的组件League
调用如下函数,
this.props.onPress(datas);