📌  相关文章
📜  如何从 api react 获取数据 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:28.033000             🧑  作者: Mango

代码示例1
const fetchData = () => {
return fetch("https://randomuser.me/api/")
      .then((response) => response.json())
      .then((data) => console.log(data));}