我正在尝试呈现 2 列平面列表。我使用的数组没有 id,只有字符串组件。我收到错误“必须在文本组件中呈现文本字符串”
state = {
groups: [],
};
constructor(props) {
super(props);
this.userId = firebase.auth().currentUser.uid;
this.matches = firestore()
.collection("users")
.doc(this.userId)
.onSnapshot((doc) => {
this.setState({
groups: doc.data().matches,
});
});
}
render() {
return (
<View style={styles.container}>
<FlatList
contentContainerStyle={styles.list}
data={this.state.groups}
keyExtractor={(item, index) => item.id}
renderItem={({ item }) => (
<View style={styles.item}>
<Text style={styles.title}>{}</Text>
<Image />
</View>
)}
/>
);
<StatusBar style="auto" />
</View>
);
}
}