【发布时间】:2022-02-13 02:56:17
【问题描述】:
如何使用“无法读取未定义的属性(读取“名称”)和(读取“位置”)解决此错误,我不明白。
招摇:https://test-front.framework.team/api-docs/#/%2Flocations/locations
代码沙盒:https://codesandbox.io/s/elem-1f5t5
我希望正确显示项目块,以及我从 API 获得的所有信息
import "./styles.css";
import { useEffect, useState } from "react";
const App = () => {
const baseURL = "https://test-front.framework.team/";
const [items, setItems] = useState([]);
const [authors, setAuthors] = useState([]);
const [locations, setLocations] = useState([]);
useEffect(() => {
fetch("https://test-front.framework.team/paintings")
.then((res) => res.json())
.then(
(result) => {
setIsLoaded(true);
setItems(result);
console.log("paintings");
}
);
fetch("https://test-front.framework.team/authors")
.then((res) => res.json())
.then(
(result) => {
setIsLoaded(true);
setAuthors(result);
console.log("authors");
}
);
fetch("https://test-front.framework.team/locations")
.then((res) => res.json())
.then(
(result) => {
setIsLoaded(true);
setLocations(result);
console.log("locations");
}
);
}, []);
const result = items.map((elem) => {
return {
author: authors.find((author) => author.id === elem.authorId).name,
created: elem.created,
id: elem.id,
imgUrl: elem.imgUrl,
location: locations.find((location) => location.id === elem.locationId)
.location,
name: elem.name
};
});
return (
<div className="App">
{result.map((elem) => (
<div key={elem.id} className={"item"}>
<img src={`${baseURL}${elem.imageUrl}`} />
<li className={"cardInfo"}>
<ul>{elem.name}</ul>
<ul> {elem.author}</ul>
<ul>{elem.created}</ul>
<ul>{elem.location}</ul>
</li>
</div>
))}
</div>
);
};
export default App;
【问题讨论】:
标签: javascript reactjs async-await fetch