📅  最后修改于: 2022-03-11 14:56:28.033000             🧑  作者: Mango
const fetchData = () => {
return fetch("https://randomuser.me/api/")
.then((response) => response.json())
.then((data) => console.log(data));}