嗨,我在 Home.js 中处于dataSource
状态,我想在 UserProfil.js 中访问它吗?
Home.js
class Accueil extends React.Component {
constructor(props) {
super(props);
this.state = {
loading: false,
refreshing: false,
location: null,
latitude:null,
longitude:null,
dataSource:[],
error:null,
appState: AppState.currentState,
}
//setInterval(this.displayPosition.bind(this),3000)
this.displayPosition = this.displayPosition.bind(this);
}
render() {
return (
<SafeAreaView style={{ flex:1 }}>
<View style={styles.main_container}>
<FlatList style={styles.flatList}
data={this.state.dataSource}
extraData = {this.state}
keyExtractor={(item, index) => item.MembreId}
renderItem={(item) => <UserItem user={item} displayDetailForUser={this._displayDetailForUser} />}
numColumns={numColumns}
refreshing={this.state.refreshing}
onRefresh={this.handleRefresh} />
</View>
</SafeAreaView>
)
}
}
我如何访问dataSource
数组,该数组包含从 UserProfil.js 中的Web服务获取的一些数据,以便对其执行.map
?
答案 0 :(得分:0)
UserProfil.js是与Home.js完全独立的文件吗?
如果是这样,您可以为此使用redux全局状态
答案 1 :(得分:0)
如果UserProfil.js是此组件的子级,则可以通过props传递它。 如果它们是独立的,则需要使用Redux或Context API。
答案 2 :(得分:0)
有3种方法可以做到这一点:
Home
和UserProfile
耦合在一起,则可以使用props
来传递数据。