所以我是反应原生的新手,我试图显示 Json 获取数据的嵌套元素,但我不知道该怎么做。在 fetch api 中使用 react hooks 后:
export default function MedProfilScreen({ route }) {
//const {id,name,specialite,work}=route.params;
const [data, setData] = useState([]);
useEffect(() => {
fetch("http:......")
.then(response => response.json())
.then(res => {
setData(
res);
console.log(res);
})
.done();
},[]);
}
我得到了这个回复:
Array [
Object {
"code": "12459552",
"id": 7,
"name": "Dr xavier vilan",
"speciality": "Cardio",
},
Object {
"education": Array [
Object {
"date_debut": "2020-02-07",
"date_end": "2020-02-06",
"diploma": "asmaa",
"school": "asmaa",
"city": "vullez",
},
]}
]
所以我想显示例如:姓名:xavier 博士.. 文凭:asmaa
return(
<View> name: Dr xavier.. diploma: asmaa </View>
)
任何人都知道该怎么做。谢谢
qq_笑_17
慕容708150
GCT1015
相关分类