我正在练习React-native打字稿。我从jsonplaceholer API获取了数据并将其添加到组件状态。映射状态后,尝试在我的手机上渲染。但是我在终端property "title" does not exist on type 'never'
上遇到打字错误。
这是我的应用程序组件
import React, { useState, useEffect } from "react";
import { StyleSheet, Text, View, ScrollView, Image } from "react-native";
export default function App() {
const [state, setstate] = useState([]);
useEffect(() => {
fetchData();
}, []);
const fetchData = async () => {
const response = await fetch("https://jsonplaceholder.typicode.com/photos");
const data = await response.json();
setstate(data);
};
return (
<ScrollView style={styles.body}>
<View style={styles.container}>
{state.map(list => {
return <Text>{list.title}</Text>; //
})}
</View>
</ScrollView>
);
}
const styles = StyleSheet.create({
body: {
padding: 150
},
container: {
flex: 1,
backgroundColor: "white",
alignItems: "center",
justifyContent: "center"
},
stretch: {
width: 50,
height: 200,
resizeMode: "stretch"
}
});
答案 0 :(得分:3)
您必须将状态定义为任何类型的数组:
const [state, setstate] = useState([] as any[]);
默认情况下,TypeScript将空数组定义为never[]
。那是一个永远为空的数组。 TS的奇异之处。 this question中的更多信息。