我有React Native项目,当我尝试构建手机时,出现此错误消息。 警告:数组或迭代器中的每个子代都应具有唯一的“键”道具。但它可以在计算机模拟器上工作。
这是json数据:http://hazir.net/api/match/today
这是我的代码,
import React from 'react';
import { FlatList, ActivityIndicator, Text, View } from 'react-native';
export default class Matches extends React.Component {
constructor(props){
super(props);
this.state ={ isLoading: true}
}
componentDidMount(){
return fetch('http://hazir.net/api/match/today')
.then((response) => response.json())
.then((responseJson) => {
this.setState({
isLoading: false,
dataSource: responseJson,
}, function(){
});
})
.catch((error) =>{
console.error(error);
});
}
render(){
if(this.state.isLoading){
return(
<View style={{flex: 1, padding: 20}}>
<ActivityIndicator/>
</View>
)
}
return(
<View style={{flex: 1, paddingTop:20}}>
<FlatList
data={this.state.dataSource}
renderItem={({item}) => <Text>{item.matchId}, {item.matchDate}</Text>}
keyExtractor={({id}, index) => id}
/>
</View>
);
}
}
答案 0 :(得分:0)
最简单的解决方案是更新keyExtractor,因为它似乎不起作用。看起来您的数据似乎没有id
属性,但是确实有matchId
属性。这意味着您可以执行以下操作。
<FlatList
...
keyExtractor={({matchId}, index) => matchId.toString()}
/>
或者,您可以使用索引作为键
<FlatList
...
keyExtractor={({matchId}, index) => index.toString()}
/>